Add ANKR Image #101
Workflow file for this run
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
on: [pull_request, workflow_dispatch] | |
name: PR workflow | |
jobs: | |
validate_chainjson: | |
name: Validate edited versions.json | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install JSON-Schema-Validator | |
run: npm install -g jsonschema | |
- name: Validate Versions.json schema | |
run: | | |
for file in $(find . -name 'versions.json' | grep -v '_template/'); do | |
if ! jsonschema -i "$file" ./versions.schema.json; then | |
exit 1 | |
fi | |
done |