Skip to content

Commit ef28372

Browse files
committed
fix: change setup-node image to setup-bun and use bun for install and build
1 parent fee35fa commit ef28372

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515
- run: corepack enable
16-
- uses: actions/setup-node@v3
17-
with:
18-
node-version: "22"
16+
- uses: oven-sh/setup-bun@v2
1917

20-
- run: npx nypm -y install
21-
- run: npm run build
18+
- run: bun install
19+
- run: bun run build
2220
env:
2321
NITRO_PRESET: github_pages
2422

0 commit comments

Comments
 (0)