try installed node

This commit is contained in:
master of disaster
2026-06-09 23:55:17 +02:00
parent 159cbfdd8d
commit 6f946ad984

View File

@@ -34,6 +34,13 @@ jobs:
env: env:
SSH_PRIVATE_KEY: ${{ secrets.SSHKEY_B64 }} 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 - name: 🔎Checkout Repository
uses: actions/checkout@v4 uses: actions/checkout@v4
with: with: