Bump the npm_and_yarn group across 1 directory with 1 update #833
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
name: Validate JSONs | |
on: [pull_request] | |
jobs: | |
verify-json-validation: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate IBC JSON | |
uses: GrantBirki/[email protected] | |
with: | |
comment: "true" | |
json_schema: config/jsons/schemas/ibcChannels.schema.json | |
files: config/jsons/ibcChannels.json | |
- name: Validate Layer Zero JSON | |
uses: GrantBirki/[email protected] | |
with: | |
comment: "true" | |
json_schema: config/jsons/schemas/layerZeroChainIds.schema.json | |
files: config/jsons/layerZeroChainIds.json | |
- name: Validate Bridge Out Tokens | |
uses: GrantBirki/[email protected] | |
with: | |
comment: "true" | |
json_schema: config/jsons/schemas/bridgeOutTokens.schema.json | |
files: config/jsons/bridgeOutTokens.json | |
- name: Validate Bridge In Tokens | |
uses: GrantBirki/[email protected] | |
with: | |
comment: "true" | |
json_schema: config/jsons/schemas/bridgeInTokens.schema.json | |
files: config/jsons/bridgeInTokens.json |