Perf baseline (scheduled) #5
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
| # Self-index perf regression signal — scheduled / manual only. | |
| # Not on the PR path: 3× full index ≈6 min and GHA runner tiers are bimodal | |
| # (see docs/benchmark.md § CI runner variance). Use `bun run check:perf-baseline` | |
| # locally before perf-sensitive merges; this workflow is visibility + drift alarm. | |
| name: Perf baseline (scheduled) | |
| on: | |
| schedule: | |
| - cron: "0 9 * * 1" | |
| workflow_dispatch: | |
| jobs: | |
| perf-baseline: | |
| name: 📈 Perf baseline (self-index) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: ./.github/actions/setup | |
| - name: Compare per-phase wall vs baseline | |
| run: bun run check:perf-baseline |