Fix: installa npm se assente, rimuove validate.yml

This commit is contained in:
2026-05-30 23:20:11 +02:00
parent 28971b4b3b
commit 47eb32cd7a
2 changed files with 11 additions and 37 deletions

View File

@@ -10,7 +10,7 @@ inputs:
runs:
using: composite
steps:
- name: Verifica prerequisiti
- name: Verifica prerequisiti e installa npm se assente
shell: bash
run: |
set -euo pipefail
@@ -19,8 +19,16 @@ runs:
exit 1
fi
if ! command -v npm &> /dev/null; then
echo "ERRORE: npm non trovato."
exit 1
echo "npm non trovato, tentativo di installazione..."
if command -v apt-get &> /dev/null; then
apt-get update -qq && apt-get install -y -qq npm 2>&1 || true
elif command -v apk &> /dev/null; then
apk add --no-cache npm 2>&1 || true
fi
if ! command -v npm &> /dev/null; then
echo "ERRORE: impossibile installare npm."
exit 1
fi
fi
echo "node $(node --version), npm $(npm --version)"