We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b935d3 commit 3200a14Copy full SHA for 3200a14
.github/workflows/npm-publish.yml
@@ -1,7 +1,7 @@
1
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
3
4
-name: Node.js Package
+name: Build
5
6
on:
7
release:
@@ -16,7 +16,10 @@ jobs:
16
with:
17
node-version: 16
18
registry-url: https://registry.npmjs.org/
19
- - run: npm i
20
- - run: npm run build && npm publish
+ - uses: oven-sh/setup-bun@v1
+ with:
21
+ bun-version: latest
22
+ - run: bun i
23
+ - run: bun run build && npm publish
24
env:
25
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
0 commit comments