File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - uses : actions/setup-node@v6
1919 with : { node-version: lts/*, cache: pnpm }
2020 - run : pnpm install
21- - run : pnpm stub && pnpm lint
21+ - run : pnpm build
2222 - run : pnpm typecheck
2323 - run : pnpm vitest run test/unit
2424 - run : pnpm vitest run test/minimal
Original file line number Diff line number Diff line change 6262 "nitro" : " node ./src/cli/index.ts" ,
6363 "release" : " node ./scripts/release.js" ,
6464 "stub" : " obuild --stub" ,
65- "test" : " pnpm lint && pnpm typecheck && pnpm test:rollup && pnpm test:rolldown" ,
65+ "test" : " pnpm lint && pnpm build && pnpm typecheck && pnpm test:rollup && pnpm test:rolldown" ,
6666 "test:rolldown" : " NITRO_BUILDER=rolldown pnpm vitest" ,
6767 "test:rollup" : " NITRO_BUILDER=rollup pnpm vitest" ,
6868 "typecheck" : " tsgo --noEmit --skipLibCheck"
Original file line number Diff line number Diff line change @@ -88,15 +88,15 @@ if (applied > 0) {
8888 console . log ( "\nRunning pnpm install..." ) ;
8989 run ( "rm -f pnpm-lock.yaml && pnpm install" ) ;
9090
91- console . log ( "\nRunning pnpm build..." ) ;
92- run ( "pnpm build" ) ;
93-
94- console . log ( "\nRunning pnpm build --stub..." ) ;
95- run ( "pnpm build --stub" ) ;
96-
9791 console . log ( "\nRunning pnpm format..." ) ;
9892 run ( "pnpm format" ) ;
9993
94+ console . log ( "\nRunning pnpm build..." ) ;
95+ run ( "pnpm build" ) ;
96+
10097 console . log ( "\nRunning pnpm test..." ) ;
10198 run ( "pnpm test" ) ;
99+
100+ console . log ( "\nRunning pnpm build --stub..." ) ;
101+ run ( "pnpm build --stub" ) ;
102102}
You can’t perform that action at this time.
0 commit comments