Skip to content

Commit fbff152

Browse files
committed
actually add workflow
1 parent c752e42 commit fbff152

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)