Merge pull request #33 from skaunov/refactoring_assignments #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Jest NPM test suite (<javascript>, <circuits>) | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: npm test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: JavaScript tests | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: | | |
cd javascript | |
npm install | |
npm test | |
- name: JavaScript `circom` tests | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: | | |
cd circuits | |
npm install | |
npm test |