generated from canisminor1990/canisminor-template
-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a331f58
commit 9e73db0
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Pkg Pr New CI | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- '!main' | ||
|
||
jobs: | ||
release: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install bun | ||
uses: oven-sh/setup-bun@v2 | ||
|
||
- name: Install deps | ||
run: bun i | ||
|
||
- name: CI | ||
run: bun run ci | ||
|
||
- name: Test | ||
run: bun run test | ||
|
||
- name: Build | ||
run: bun run build | ||
|
||
- name: Release | ||
run: bunx pkg-pr-new publish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters