Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ jobs:

- name: Run benchmarks with tinybench-plugin
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2`
uses: CodSpeedHQ/action@main
uses: CodSpeedHQ/action@v3
with:
run: pnpm --filter ${{ matrix.example }} bench-tinybench
env:
CODSPEED_SKIP_UPLOAD: true
CODSPEED_DEBUG: true
- name: Run benchmarks with benchmark.js-plugin
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2`
uses: CodSpeedHQ/action@main
uses: CodSpeedHQ/action@v3
with:
run: pnpm --filter ${{ matrix.example }} bench-benchmark-js
env:
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ jobs:

- 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
uses: CodSpeedHQ/action@v3
with:
run: |
pnpm moon run --concurrency 1 :bench
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
Expand All @@ -51,10 +53,11 @@ jobs:

- 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
uses: CodSpeedHQ/action@v3
with:
# Only tinybench supports walltime for now
run: |
pnpm moon run --concurrency 1 :bench
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
Loading