Fix: Show friendly 500.html when database is unavailable #1055
Workflow file for this run
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$" |