docs: put the boolean-flag trap where a command is built, and record … #16
This file contains hidden or 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
| # The juror CLI shipped with `prepublishOnly` as its only gate. This tool spends | |
| # money on every `create-dispute`, so the gate runs on every push instead. | |
| name: ci | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v7 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm typecheck | |
| - run: pnpm lint | |
| # Fork and acceptance suites self-skip here: no Arbitrum One fork, no | |
| # archive RPC. That is visible in the run output, never silently green. | |
| - run: pnpm test |