File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed 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
+
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 7
7
"scripts" : {
8
8
"test:unit" : " pnpm -r test:unit" ,
9
9
"build" : " rimraf packages/*/dist && pnpm -r build" ,
10
- "build:packages" : " pnpm --filter './packages/*' build" ,
10
+ "build:packages" : " rimraf packages/*/dist && pnpm --filter './packages/*' build" ,
11
11
"check" : " pnpm -r check" ,
12
12
"lint" : " pnpm -r lint" ,
13
13
"format" : " pnpm -r format" ,
You can’t perform that action at this time.
0 commit comments