Skip to content

Commit f09e059

Browse files
committed
chore(ci): skip tinybench in node 14
1 parent 2d93974 commit f09e059

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ jobs:
4949
include:
5050
- node-version: "14"
5151
pnpm-version: "7"
52+
skip-tinybench: true
5253
fail-fast: false
5354
steps:
5455
- uses: "actions/checkout@v3"
@@ -65,9 +66,16 @@ jobs:
6566
- run: pnpm install --frozen-lockfile --prefer-offline
6667
- run: pnpm moon run :build
6768

68-
- name: Run benchmarks
69+
- name: Run benchmarks on tinybench-plugin
70+
if: matrix.skip-tinybench != true
6971
uses: CodSpeedHQ/action@feat/node-script
7072
with:
71-
run: pnpm moon run :bench
73+
run: pnpm moon run tinybench-plugin:bench
74+
env:
75+
SKIP_UPLOAD: true
76+
- name: Run benchmarks on benchmark.js-plugin
77+
uses: CodSpeedHQ/action@feat/node-script
78+
with:
79+
run: pnpm moon run benchmark.js-plugin:bench
7280
env:
7381
SKIP_UPLOAD: true

0 commit comments

Comments
 (0)