Merge pull request #3032 from filecoin-project/refresh-audit-rec83w2R… #27420
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: Validate JSON | |
| on: | |
| push: | |
| branches-ignore: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: jsonlint | |
| uses: super-linter/super-linter/slim@v5 | |
| env: | |
| VALIDATE_JSON: true | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |