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 c728a87 commit 0e01614Copy full SHA for 0e01614
.github/workflows/publish-package.yml
@@ -7,21 +7,24 @@ on:
7
8
jobs:
9
publish-package:
10
- runs-on: node:24
+ runs-on: ubuntu:latest
11
environment: publish
12
13
+
14
15
steps:
16
- name: Checkout repository
- uses: actions/checkout@v2
17
+ uses: actions/checkout@v4
18
- - name: Install packages
- uses: bahmutov/npm-install@v1
19
+ - name: Install
20
+ uses: oven-sh/setup-bun@v2
21
+ run: bun install
22
23
- name: Run build
- run: npm run build
24
+ run: bun run build
25
26
- name: Run tests
- run: npm run test
27
+ run: bun run test
28
29
- name: Semantic release
30
uses: cycjimmy/semantic-release-action@v3
0 commit comments