From da005f0172f6e1a2144c23663060d775e3a6be7a Mon Sep 17 00:00:00 2001 From: Nik Date: Fri, 5 Dec 2025 21:10:24 +0100 Subject: [PATCH] git: Fix json schema checking --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2f0a9c2..1f12f44 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,9 +82,9 @@ jobs: - name: 📎 Validate JSON Files run: | 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 tips - for file in ./[!_schema.json]*; do jsonschema -i $file _schema.json; done + for file in ./[!_]*; do jsonschema -i $file _schema.json; done cd ..