chore: bump instrument-hooks #442
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: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| codspeed-instrumented: | |
| name: Run CodSpeed instrumented | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - uses: "actions/checkout@v4" | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - uses: pnpm/action-setup@v2 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| cache: pnpm | |
| node-version-file: .nvmrc | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - run: pnpm moon run :build | |
| - name: Run benchmarks | |
| # use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2` | |
| uses: CodSpeedHQ/action@main | |
| with: | |
| mode: instrumentation | |
| run: | | |
| pnpm moon run tinybench-plugin:bench | |
| pnpm moon run vitest-plugin:bench | |
| pnpm moon run benchmark.js-plugin:bench | |
| pnpm --workspace-concurrency 1 -r bench-tinybench | |
| pnpm --workspace-concurrency 1 -r bench-benchmark-js | |
| pnpm --workspace-concurrency 1 -r bench-vitest | |
| codspeed-walltime: | |
| name: Run CodSpeed walltime | |
| runs-on: "codspeed-macro" | |
| steps: | |
| - uses: "actions/checkout@v4" | |
| with: | |
| fetch-depth: 0 | |
| submodules: true | |
| - uses: pnpm/action-setup@v2 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| cache: pnpm | |
| node-version-file: .nvmrc | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - run: pnpm moon run :build | |
| - name: Run benchmarks | |
| # use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2` | |
| uses: CodSpeedHQ/action@main | |
| with: | |
| mode: walltime | |
| run: | | |
| pnpm moon run tinybench-plugin:bench | |
| pnpm moon run vitest-plugin:bench | |
| pnpm moon run benchmark.js-plugin:bench | |
| pnpm --workspace-concurrency 1 -r bench-tinybench | |
| pnpm --workspace-concurrency 1 -r bench-vitest |