Skip to content

Commit dbea15f

Browse files
committed
node -> bun
1 parent cb1d6e4 commit dbea15f

File tree

4 files changed

+469
-10
lines changed

4 files changed

+469
-10
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,16 @@ jobs:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

24-
- name: Setup Node.js
25-
uses: actions/setup-node@v4
24+
- name: Setup Bun
25+
uses: oven-sh/setup-bun@v2
2626
with:
27-
node-version: '20'
28-
cache: 'npm'
27+
bun-version: latest
2928

3029
- name: Install dependencies
31-
run: npm ci
30+
run: bun install
3231

3332
- name: Build
34-
run: npm run demo:build
33+
run: bun run demo:build
3534

3635
- name: Setup Pages
3736
uses: actions/configure-pages@v4

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ Copy these files:
2323
## Demo
2424

2525
```bash
26-
npm run demo:dev
26+
bun run demo:dev
2727
```
2828

2929
Visit `http://localhost:8000/demo/`
3030

3131
## Build
3232

3333
```bash
34-
npm run demo:build
34+
bun run demo:build
3535
```
3636

3737
## License

0 commit comments

Comments
 (0)