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.
2 parents fff1367 + 4592527 commit 125848fCopy full SHA for 125848f
.github/workflows/deploy.yml
@@ -59,23 +59,21 @@ jobs:
59
strategy:
60
matrix:
61
os: [ubuntu-latest]
62
- node: [16]
63
- packager: [npm]
+ bun: [1.0.x]
64
65
runs-on: ${{ matrix.os }}
66
67
steps:
68
- uses: actions/checkout@v3
69
- - name: Set up Node
+ - name: Set up Bun
70
id: setup
71
- uses: actions/setup-node@v3
+ uses: oven-sh/setup-bun@v1
72
with:
73
- node-version: ${{ matrix.node }}
74
- cache: ${{ matrix.packager }}
+ bun-version: ${{ matrix.bun }}
75
- name: Install Dependencies
76
- run: npm ci
+ run: bun i
77
- name: Build Resources
78
- run: npm run build
+ run: bun run build
79
- name: Publish to NPM
80
uses: JS-DevTools/npm-publish@v1
81
0 commit comments