Skip to content

fix: fix failing ci #18

fix: fix failing ci

fix: fix failing ci #18

Workflow file for this run

name: unit-tests
on:
[push, pull_request]
jobs:
circuits:
name: circuits
runs-on: ubuntu-latest
container:
image: saleel/circom:2.1.6
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run tests
working-directory: packages/circuits
run: yarn test
contracts:
name: contracts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Run tests
working-directory: packages/contracts
run: yarn test