Skip to content

Commit aa4e77d

Browse files
committed
Chore: Fix ci.
1 parent 6605e6a commit aa4e77d

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,18 @@ jobs:
1010
- name: ⬇️ Checkout repo
1111
uses: actions/checkout@v4
1212

13-
- name: ⎔ Setup node
14-
uses: actions/setup-node@v4
13+
- uses: oven-sh/setup-bun@v2
1514
with:
16-
node-version: 22
15+
bun-version: latest
1716

1817
- name: 📥 Download deps
1918
working-directory: "web"
2019
run: |
21-
npm install -g npm@latest
22-
npm cache clean --force
23-
npm install
20+
bun install
2421
2522
- name: 🏗 Run build script
2623
working-directory: "web"
27-
run: npm run build
24+
run: bun run build
2825

2926
- name: 📦 Move build
3027
run: |

0 commit comments

Comments
 (0)