diff --git a/.gitea/workflows/ansible-runner.yaml b/.gitea/workflows/ansible-runner.yaml index 48ce77c..8f66253 100644 --- a/.gitea/workflows/ansible-runner.yaml +++ b/.gitea/workflows/ansible-runner.yaml @@ -34,6 +34,13 @@ jobs: env: SSH_PRIVATE_KEY: ${{ secrets.SSHKEY_B64 }} + - name: 🛠️ Install Node.js fallback + run: | + if ! command -v node &> /dev/null; then + echo "Node nicht gefunden. Installiere..." + sudo apt-get update && sudo apt-get install -y nodejs + fi + - name: 🔎Checkout Repository uses: actions/checkout@v4 with: