We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d93974 commit f09e059Copy full SHA for f09e059
.github/workflows/ci.yml
@@ -49,6 +49,7 @@ jobs:
49
include:
50
- node-version: "14"
51
pnpm-version: "7"
52
+ skip-tinybench: true
53
fail-fast: false
54
steps:
55
- uses: "actions/checkout@v3"
@@ -65,9 +66,16 @@ jobs:
65
66
- run: pnpm install --frozen-lockfile --prefer-offline
67
- run: pnpm moon run :build
68
- - name: Run benchmarks
69
+ - name: Run benchmarks on tinybench-plugin
70
+ if: matrix.skip-tinybench != true
71
uses: CodSpeedHQ/action@feat/node-script
72
with:
- 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
80
env:
81
SKIP_UPLOAD: true
0 commit comments