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 d5f380c commit f43a28fCopy full SHA for f43a28f
1 file changed
.github/workflows/deploy.yml
@@ -19,17 +19,16 @@ jobs:
19
- name: Checkout
20
uses: actions/checkout@v4
21
22
- - name: Setup Node
23
- uses: actions/setup-node@v4
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v2
24
with:
25
- node-version: 20
26
- cache: npm
+ bun-version: latest
27
28
- name: Install dependencies
29
- run: npm ci
+ run: bun install --frozen-lockfile
30
31
- name: Build
32
- run: npm run build
+ run: bun run build
33
34
- name: Sync build artifacts to deploy path
35
run: |
0 commit comments