From 7f7694cf8071edb657f2c21a580fe5950962b9fd Mon Sep 17 00:00:00 2001 From: paulhorn Date: Sat, 13 Jun 2026 00:36:10 +0200 Subject: [PATCH] CI: Node installieren, damit actions/checkout im rust:1-Image laeuft --- .gitea/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index eab7a06..30b038c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -1,5 +1,8 @@ # paulDB – Gitea Actions CI # Läuft auf deinem act_runner (server2) im Image rust:1 (per Runner-Label gemappt). +# +# Hinweis: rust:1 bringt cargo/rustc mit, aber KEIN Node. actions/checkout ist +# aber eine JavaScript-Action -> wir installieren Node als ersten Schritt. name: CI @@ -9,6 +12,12 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: + - name: Node installieren (actions/checkout braucht es) + run: | + apt-get update -qq + apt-get install -y -qq nodejs + node --version + - name: Code auschecken uses: actions/checkout@v4