Skip to content

Commit

Permalink
chore(ci): skip tinybench in node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
adriencaccia committed Jun 21, 2023
1 parent a5ec89a commit a4e22ab
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
include:
- node-version: "14"
pnpm-version: "7"
skip-tinybench: true
fail-fast: false
steps:
- uses: "actions/checkout@v3"
Expand All @@ -65,9 +66,16 @@ jobs:
- run: pnpm install --frozen-lockfile --prefer-offline
- run: pnpm moon run :build

- name: Run benchmarks
- name: Run benchmarks on tinybench-plugin
if: matrix.skip-tinybench != true
uses: CodSpeedHQ/action@feat/node-script
with:
run: pnpm moon run :bench
run: pnpm moon run tinybench-plugin:bench
env:
SKIP_UPLOAD: true
- name: Run benchmarks on benchmark.js-plugin
uses: CodSpeedHQ/action@feat/node-script
with:
run: pnpm moon run benchmark.js-plugin:bench
env:
SKIP_UPLOAD: true

0 comments on commit a4e22ab

Please sign in to comment.