From 93f118f055959a77cea3bcc6c462bc498d32ebc6 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Mon, 6 Apr 2026 07:09:11 +0200 Subject: [PATCH] fix(ci): add node --- .gitea/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 53e534a..a7808f3 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -38,6 +38,12 @@ jobs: fail-fast: false matrix: ${{ fromJson(needs.matrix.outputs.build_matrix) }} steps: + - name: Install Node.js (required for JS actions in this container) + run: | + apt-get update -qq && apt-get install -y -qq curl + curl -fsSL https://deb.nodesource.com/setup_20.x | bash - + apt-get install -y -qq nodejs + - name: Checkout uses: actions/checkout@v4