mirror of
https://github.com/arnaucube/miksi-core.git
synced 2026-02-06 19:16:40 +01:00
Merge pull request #1 from miksi-labs/feature/add-gha
Add GithubActions with for unit tests
This commit is contained in:
21
.github/workflows/tests.yml
vendored
Normal file
21
.github/workflows/tests.yml
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
name: Test
|
||||
on:
|
||||
push:
|
||||
branches: [ '*' ]
|
||||
pull_request:
|
||||
branches: [ '*' ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [ 10.x ]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Nodejs
|
||||
uses: actions/setup-node@v1
|
||||
- name: Install node_modules
|
||||
run: npm install
|
||||
- name: Test circom circuits
|
||||
run: npm run test
|
||||
Reference in New Issue
Block a user