Merge pull request #775 from DrCBeatz/patch-1 #1054
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: JSON Syntax Validator | |
| on: | |
| push: | |
| paths: | |
| - '**.json' | |
| pull_request: | |
| jobs: | |
| check: | |
| name: Check JSON Files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: JSON Syntax Check | |
| uses: limitusus/json-syntax-check@v1 | |
| with: | |
| pattern: "\\.json$" |