From 459fcac6a5aa6cec57663afea3e4eb66c17893b9 Mon Sep 17 00:00:00 2001 From: dejaguarkyng Date: Mon, 1 Jun 2026 17:14:45 +0000 Subject: [PATCH] Fix static JSON validation --- .github/workflows/reusable-static-pr-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-static-pr-ci.yml b/.github/workflows/reusable-static-pr-ci.yml index 6edc1a2..f63c2c0 100644 --- a/.github/workflows/reusable-static-pr-ci.yml +++ b/.github/workflows/reusable-static-pr-ci.yml @@ -39,7 +39,9 @@ jobs: echo "No JSON files found." exit 0 fi - python3 -m json.tool "${files[@]}" > /dev/null + for file in "${files[@]}"; do + python3 -m json.tool "$file" > /dev/null + done - name: Validate YAML files run: |