Skip to content

Commit

Permalink
feat: use bun
Browse files Browse the repository at this point in the history
  • Loading branch information
christophwitzko committed Feb 18, 2024
1 parent e9871c8 commit 6c83899
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 3,656 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.lockb binary diff=lockb
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
- run: npm ci
- run: npm test
- 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
- name: go-semantic-release
id: semrel
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test && npm run build && git add dist/
bun run test && bun run build && git add dist/
Binary file added bun.lockb
Binary file not shown.
Loading

0 comments on commit 6c83899

Please sign in to comment.