git: Fix json schema checking

This commit is contained in:
Nik
2025-12-05 21:10:24 +01:00
committed by GitHub
parent b2f126d22f
commit da005f0172

View File

@@ -82,9 +82,9 @@ jobs:
- name: 📎 Validate JSON Files - name: 📎 Validate JSON Files
run: | run: |
cd constants cd constants
for file in ./[!_schema.json]*; do jsonschema -i $file _schema.json; done for file in ./[!_]*; do jsonschema -i $file _schema.json; done
cd .. cd ..
cd tips cd tips
for file in ./[!_schema.json]*; do jsonschema -i $file _schema.json; done for file in ./[!_]*; do jsonschema -i $file _schema.json; done
cd .. cd ..