From 9ed38c7514227426a81381c462c80df212ebe1a8 Mon Sep 17 00:00:00 2001 From: db123 Date: Tue, 23 Jun 2026 20:25:22 +0330 Subject: [PATCH] CI: install Node.js before using JavaScript actions --- .gitea/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index dee4aef..bdab15f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,6 +9,11 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Install Node.js (required for GitHub Actions) + run: | + sudo apt-get update + sudo apt-get install -y nodejs + - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: