Skip to content

Commit 6c83899

Browse files
feat: use bun
1 parent e9871c8 commit 6c83899

File tree

6 files changed

+8
-3656
lines changed

6 files changed

+8
-3656
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.lockb binary diff=lockb

.github/workflows/ci.yml

+5-7
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
16-
with:
17-
node-version: 20
18-
- run: npm ci
19-
- run: npm test
20-
- run: npm run build
14+
- uses: actions/checkout@v4
15+
- uses: oven-sh/setup-bun@v1
16+
- run: bun install
17+
- run: bun run test
18+
- run: bun run build
2119
- name: go-semantic-release
2220
id: semrel
2321
uses: ./

.husky/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npm test && npm run build && git add dist/
4+
bun run test && bun run build && git add dist/

bun.lockb

105 KB
Binary file not shown.

0 commit comments

Comments
 (0)