We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 082ccdf commit 4419321Copy full SHA for 4419321
3 files changed
.github/workflows/publish-pkg-pr-new.yml
@@ -0,0 +1,25 @@
1
+name: Publish pkg.pr.new
2
+
3
+on:
4
+ workflow_dispatch:
5
+ pull_request:
6
7
+env:
8
+ # See https://consoledonottrack.com/
9
+ DO_NOT_TRACK: '1'
10
11
+jobs:
12
+ build-and-publish-snapshots-to-npm:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Install Dependencies
19
+ uses: ./.github/workflows/actions/install-dependencies
20
21
+ - name: Run Build Step
22
+ run: pnpm build
23
24
+ - name: Publish to pkg.pr.new
25
+ run: pnpm pkg-pr-new publish
package.json
@@ -64,6 +64,7 @@
64
"lefthook": "^1.12.4",
65
"memfs": "^4.39.0",
66
"mock-fs": "^5.5.0",
67
+ "pkg-pr-new": "^0.0.59",
68
"prettier": "^3.6.2",
69
"typescript": "^5.9.2",
70
"unbuild": "^3.6.1",
0 commit comments