Skip to content

Cleaned a comment from lib.rs #18

Cleaned a comment from lib.rs

Cleaned a comment from lib.rs #18

Workflow file for this run

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 javascript
npm install
cd ../circuits
npm install
npm run flatten-deps && npm run test