add YUM to osmosis assets #1534
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: | |
branches: | |
- main | |
name: Pull request workflow | |
jobs: | |
validate_zone_chains: | |
name: Validate zone chains | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: true | |
- name: Install JSON-Schema-Validator | |
run: npm install -g jsonschema | |
- name: Validate Zone Chains schema | |
run: | | |
for file in $(find . -name 'osmosis.zone_chains.json'); do | |
if ! jsonschema -i "$file" ./zone_chains.schema.json; then | |
exit 1 | |
fi | |
done |