Store perf: structural hot-path pass, shallow stores + markRaw, effect-run trims #271
Workflow file for this run
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: CodSpeed | |
| on: | |
| pull_request: | |
| branches: | |
| - next | |
| push: | |
| branches: | |
| - next | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| benchmarks: | |
| name: Run benchmarks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: ".nvmrc" | |
| cache: "pnpm" | |
| - name: Installing deps | |
| run: pnpm install | |
| - name: Building (packages only) | |
| run: pnpm turbo run build --filter=!./examples/* --filter=!test-integration | |
| - name: Run benchmarks under CodSpeed | |
| uses: CodSpeedHQ/action@v4 | |
| with: | |
| mode: simulation | |
| run: | | |
| pnpm --filter @solidjs/signals run bench | |
| pnpm --filter @solidjs/web run bench | |
| pnpm --filter @solidjs/web run bench:server |