File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Package PR
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+
9+ steps :
10+ - uses : actions/checkout@v4
11+ - uses : pnpm/action-setup@v4.0.0
12+ - uses : actions/setup-node@v4
13+ with :
14+ node-version : 20.x
15+ cache : pnpm
16+
17+ - run : pnpm install --frozen-lockfile
18+
19+ - run : pnpm build
20+
21+ - run : pnpx pkg-pr-new publish --compact './packages/*'
22+
23+ - run : ls -R .
Original file line number Diff line number Diff line change 77 "scripts" : {
88 "test:unit" : " pnpm -r test:unit" ,
99 "build" : " rimraf packages/*/dist && pnpm -r build" ,
10- "build:packages" : " pnpm --filter './packages/*' build" ,
10+ "build:packages" : " rimraf packages/*/dist && pnpm --filter './packages/*' build" ,
1111 "check" : " pnpm -r check" ,
1212 "lint" : " pnpm -r lint" ,
1313 "format" : " pnpm -r format" ,
You can’t perform that action at this time.
0 commit comments