From 1908cbc8b4b7988997955a9649eef73d7ca75553 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Tue, 4 Feb 2025 12:33:39 +0000 Subject: [PATCH] feat(ci): add Node.js setup to GitHub Actions workflow Add actions/setup-node@v4 to install Node.js alongside Bun in the CI pipeline, ensuring both runtimes are available for build processes. --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 88b04846..6bcbc8c2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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