Skip to content

Updated README and change the tld from vercel.app to jimmychu0807.hk #50

Updated README and change the tld from vercel.app to jimmychu0807.hk

Updated README and change the tld from vercel.app to jimmychu0807.hk #50

Workflow file for this run

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