feat: improve quorum #307
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
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: Build | |
on: | |
pull_request: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
- release/* | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
defaults: | |
run: | |
working-directory: onchain/rollups | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly # FIXME: wait for the next monthly pinned binaries | |
- name: Install dependencies | |
run: yarn install | |
- name: Generate proofs | |
run: yarn proofs:setup | |
- name: Run tests | |
run: yarn test |