Skip to content

Commit defe20f

Browse files
committed
Try to fix CI
1 parent ee85121 commit defe20f

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,4 +93,4 @@ jobs:
9393
- name: Install dependencies
9494
run: pnpm install --frozen-lockfile --ignore-scripts
9595
- name: Run benchmark
96-
run: node ./test/benchmark.js
96+
run: pnpm run benchmark

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"clean": "rm -R coverage",
1313
"unit": "uvu . .test.js$",
1414
"test": "c8 pnpm unit && eslint . && pnpm clean && size-limit",
15-
"start": "vite test/demo/ --open"
15+
"start": "vite test/demo/ --open",
16+
"benchmark": "node ./test/benchmark.js"
1617
},
1718
"engines": {
1819
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"

test/benchmark.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env node
2+
13
let { uid: uidSecure } = require('uid/secure')
24
let { v4: lukeed4 } = require('@lukeed/uuid')
35
let { v4: napiv4 } = require('@napi-rs/uuid')

0 commit comments

Comments
 (0)