From 6314d82d0356428cb90f9934e0bb583558d58321 Mon Sep 17 00:00:00 2001 From: rock Date: Sun, 6 Sep 2026 22:34:16 -0700 Subject: [PATCH] ci: install nodejs before running actions/checkout@v4 --- .gitea/workflows/build.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 0e6b02f..2a1c98d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,6 +17,9 @@ jobs: name: Test & Lint runs-on: rust steps: + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs + - name: Checkout code uses: actions/checkout@v4 @@ -32,6 +35,9 @@ jobs: needs: test if: github.event_name == 'push' steps: + - name: Install Node.js + run: apt-get update && apt-get install -y nodejs + - name: Checkout code uses: actions/checkout@v4