File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 21
21
uses : actions/setup-node@v4
22
22
with :
23
23
node-version : ${{ matrix.node-version }}
24
- - run : npm install
24
+ - run : npm update
25
25
- run : npm run build
26
26
- run : npm run lint
27
27
- run : npm run test
34
34
- uses : oven-sh/setup-bun@v1
35
35
with :
36
36
bun-version : latest
37
- - run : bun install
37
+ - run : bun update --no-save
38
38
- run : bun run build
39
39
- run : bun run test:short
40
40
- run : bun run examples:bun
Original file line number Diff line number Diff line change 25
25
"scripts" : {
26
26
"test" : " vitest --run" ,
27
27
"test:short" : " vitest --run --project node" ,
28
- "examples:node" : " cd tests/examples && npm install && npm run test:node" ,
29
- "examples:bun" : " cd tests/examples && bun install && bun run test:bun" ,
30
- "examples:esbuild" : " cd tests/examples && npm install && npm run test:esbuild" ,
28
+ "examples:node" : " cd tests/examples && npm update && npm run test:node" ,
29
+ "examples:bun" : " cd tests/examples && bun update --no-save && bun run test:bun" ,
30
+ "examples:esbuild" : " cd tests/examples && npm update && npm run test:esbuild" ,
31
31
"bench" : " vitest bench --run" ,
32
32
"lint" : " eslint ." ,
33
33
"build" : " tsc -p tsconfig.build.json" ,
You can’t perform that action at this time.
0 commit comments