Add numbered Calibration dashboard pagination #134
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
| name: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.15.0 | |
| - name: Set up Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Validate operations baseline | |
| run: pnpm ops:validate | |
| - name: Smoke operations baseline | |
| run: pnpm ops:smoke -- --iterations 3 | |
| - name: Test | |
| run: pnpm test | |
| - name: Validate Worker deploy bundle | |
| run: pnpm worker:dry-run | |
| - name: Build committed artifacts | |
| run: pnpm build:artifacts | |
| - name: Check generated artifacts are current | |
| run: git diff --exit-code artifacts/contracts/FocPlatformRegistry.json |