Skip to content

Commit

Permalink
feat(ci): add Node.js setup to GitHub Actions workflow
Browse files Browse the repository at this point in the history
Add actions/setup-node@v4 to install Node.js alongside Bun in the CI
pipeline, ensuring both runtimes are available for build processes.
  • Loading branch information
ryoppippi committed Feb 4, 2025
1 parent 35cc53b commit 1908cbc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- run: bun i --frozen-lockfile
- run: bun run build

Expand Down

0 comments on commit 1908cbc

Please sign in to comment.