We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a31af05 commit 73a8af6Copy full SHA for 73a8af6
.github/workflows/publish-pr-releases.yml
@@ -0,0 +1,28 @@
1
+name: Pull Request Prerelease
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - "**"
8
+ tags:
9
+ - "!**"
10
11
+jobs:
12
+ prerelease:
13
+ name: Pull Request Prerelease
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repo
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup Node.js 20.x
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: 20.x
23
24
+ - name: Install dependencies with cache
25
+ uses: bahmutov/npm-install@v1
26
27
+ - name: Build and publish to pkg.pr.new
28
+ run: npm run pkg-pr-new-publish
0 commit comments