From 28bd1b45b5b0a71c03449e6e8e8542f0b19d65bd Mon Sep 17 00:00:00 2001 From: Natsu Date: Tue, 21 Jan 2025 00:41:41 +0700 Subject: [PATCH] chore(workflow): Update Prettier command to include additional JSON files --- .github/workflows/check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 5df989e1..c72b6f89 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -57,7 +57,7 @@ jobs: run: npm install --global prettier sort-json - name: Run Prettier - run: prettier --write "local-files/*.json" "local-files/genericTrans/*.json" + run: prettier --write "local-files/*.json" "local-files/genericTrans/index/*.json" "local-files/genericTrans/lyrics/*.json" - name: Sort JSON files run: find local-files -type f -name '*.json' -not -path "local-files/genericTrans/*" -exec sort-json {} +