feat(qa): top QA contributors ranking #386
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| jsonlint: | |
| name: JSON Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install jq | |
| run: sudo apt-get install -y jq | |
| - name: Validate JSON | |
| run: jq -e . <<<$(cat var/data/companies.json) |