Bump actions/setup-python from 5 to 7 #9
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: Quality checks | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.12" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| - name: Check Python syntax | |
| run: python -m compileall -q . | |
| - name: Check JavaScript syntax | |
| run: node --check script.js | |
| - name: Validate Firebase JSON | |
| run: | | |
| python -m json.tool firebase.json > /dev/null | |
| python -m json.tool database.rules.json > /dev/null |