Skip to content

Commit 2679f20

Browse files
committedJul 8, 2024
Add pkg.pr.new workflow
1 parent 1f1c8bb commit 2679f20

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

‎.github/workflows/pkg.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Publish commit
2+
on: [push, pull_request]
3+
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: oven-sh/setup-bun@v1
10+
- run: bun install --ignore-scripts --frozen-lockfile
11+
- run: bun run build
12+
working-directory: packages/knip
13+
- run: bunx pkg-pr-new publish --compact ./packages/knip

0 commit comments

Comments
 (0)