Merge pull request #351 from filecoin-project/filecoin-registry-bot #556
This file contains 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 }} |