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