Skip to content

Commit 0e01614

Browse files
committed
Try to build
1 parent c728a87 commit 0e01614

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/publish-package.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,24 @@ on:
77

88
jobs:
99
publish-package:
10-
runs-on: node:24
10+
runs-on: ubuntu:latest
1111
environment: publish
1212

13+
14+
1315
steps:
1416
- name: Checkout repository
15-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1618

17-
- name: Install packages
18-
uses: bahmutov/npm-install@v1
19+
- name: Install
20+
uses: oven-sh/setup-bun@v2
21+
run: bun install
1922

2023
- name: Run build
21-
run: npm run build
24+
run: bun run build
2225

2326
- name: Run tests
24-
run: npm run test
27+
run: bun run test
2528

2629
- name: Semantic release
2730
uses: cycjimmy/semantic-release-action@v3

0 commit comments

Comments
 (0)