We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9871c8 commit 6c83899Copy full SHA for 6c83899
.gitattributes
@@ -0,0 +1 @@
1
+*.lockb binary diff=lockb
.github/workflows/ci.yml
@@ -11,13 +11,11 @@ jobs:
11
build:
12
runs-on: ubuntu-latest
13
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
+ - uses: actions/checkout@v4
+ - uses: oven-sh/setup-bun@v1
+ - run: bun install
+ - run: bun run test
+ - run: bun run build
21
- name: go-semantic-release
22
id: semrel
23
uses: ./
.husky/pre-commit
@@ -1,4 +1,4 @@
#!/bin/sh
2
. "$(dirname "$0")/_/husky.sh"
3
4
-npm test && npm run build && git add dist/
+bun run test && bun run build && git add dist/
bun.lockb
105 KB
0 commit comments