Skip to content

chore: add circuit test to github actions #5

chore: add circuit test to github actions

chore: add circuit test to github actions #5

Workflow file for this run

name: unit-tests
on:
[push, pull_request]
jobs:
circuits:
name: circuits
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: 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: forge test -vvv
- name: Run snapshot
run: forge snapshot