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

@@ -1,34 +0,0 @@
name: Validate Actions
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Valida YAML
run: |
for f in */action.yml; do
echo "Validazione: $f"
python3 -c "import yaml; yaml.safe_load(open('$f')); print('OK')"
done
- name: Verifica struttura action
run: |
required_fields=("name" "runs")
for f in */action.yml; do
for field in "${required_fields[@]}"; do
if ! grep -q "^$field:" "$f"; then
echo "ERRORE: $f manca del campo '$field'"
exit 1
fi
done
done
echo "Struttura azioni valida"