Skip to content

Add github action to run the test + Test fixes #3

Add github action to run the test + Test fixes

Add github action to run the test + Test fixes #3

Workflow file for this run

name: "checks"
on:
push:
branches:
- master
pull_request:
branches:
- master
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Circom clean
run: npm run circom-clean
- name: Circom build
run: npm run circom-build
- name: Run tests
run: npm run test