feat(ClickBounty): enter a pool and be into win #397
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: checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
workflow_dispatch: {} | |
concurrency: | |
group: checks-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/nodlecode/devcontainer-rollup | |
options: --user root | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: yarn | |
- name: Spell Check | |
run: yarn spellcheck | |
- name: Lint | |
run: yarn lint | |
- name: Run tests | |
run: forge test --zksync |