Skip to content

Commit 2ca73ec

Browse files
committed
chore: add pkg new job
1 parent d32a643 commit 2ca73ec

File tree

3 files changed

+521
-0
lines changed

3 files changed

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

Comments
 (0)