We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c752e42 commit fbff152Copy full SHA for fbff152
.github/workflows/pkg-pr-new-publish.yml
@@ -0,0 +1,29 @@
1
+name: pkg-pr-new Publish
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - "**"
8
+ tags:
9
+ - "!**"
10
11
+jobs:
12
+ prerelease:
13
+ name: pkg-pr-new Publish
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
+ cache: yarn
24
25
+ - name: Install dependencies
26
+ run: yarn install
27
28
+ - name: Build and publish to pkg.pr.new
29
+ run: yarn run pkg-pr-new-publish
0 commit comments