We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d32a643 commit 2ca73ecCopy full SHA for 2ca73ec
.github/workflows/pr-pkg-pr-new.yml
@@ -0,0 +1,23 @@
1
+name: Publish Any Commit
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
8
+ steps:
9
+ - name: Checkout code
10
+ uses: actions/checkout@v4
11
12
+ - run: corepack enable
13
+ - uses: actions/setup-node@v4
14
+ with:
15
+ cache: 'npm'
16
17
+ - name: Install dependencies
18
+ run: npm install
19
20
+ - name: Build
21
+ run: nx run-many --target=build --all --parallel --maxParallel=3
22
23
+ - run: npm dlx pkg-pr-new publish
0 commit comments