Added a project explanation video link #38
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: Check | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn | |
- name: Run ci-check | |
run: yarn ci-check | |
# We don't run `yarn test` because apps/circuits depends on circom, a rust binary, | |
# and apps/contracts depends on wasm file and prover key generated by circuits. | |
# Currently building the web-app fails | |
# - name: Build apps/web-app | |
# run: yarn workspace web-app build |