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 55d5384 commit af29ab1Copy full SHA for af29ab1
.github/workflows/checks.yml
@@ -20,7 +20,7 @@ jobs:
20
bun-version: latest
21
22
- run: bun install --frozen-lockfile
23
- - run: bun run build && bun install
+ - run: bun run build
24
- run: bun eslint
25
#- run: bun test
26
- run: bun tsc
.github/workflows/publish.yml
@@ -16,6 +16,10 @@ jobs:
16
steps:
17
- uses: actions/checkout@v5
18
19
+ - uses: oven-sh/setup-bun@v2
+ with:
+ bun-version: latest
+
- uses: actions/setup-node@v5
with:
node-version: 24
@@ -24,5 +28,5 @@ jobs:
28
- env:
29
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
30
run: |
27
- npm install && npm run build
31
+ bun install && bun run build
32
npm publish --provenance --access public
0 commit comments