Skip to content

Commit

Permalink
update linting
Browse files Browse the repository at this point in the history
  • Loading branch information
meithebear committed Jun 10, 2024
1 parent e2402b9 commit 9a2f561
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,9 @@ jobs:
- name: Install jsonlint
run: pnpm install jsonlint-cli
- name: Run jsonlint
run: ./node_modules/.bin/jsonlint-cli -s **/*.json
run: |
json_files=$(find . -name '*.json')
for file in $json_files; do
./node_modules/.bin/jsonlint-cli -s "$file"
done
- run: pnpm test

0 comments on commit 9a2f561

Please sign in to comment.