Remove ibc_tokens_total_supply config #100
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: | |
- master | |
name: Pull request workflow | |
jobs: | |
validate_markets: | |
name: Validate Featured Markets | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install node-gyp | |
uses: borales/[email protected] | |
with: | |
cmd: add node-gyp --ignore-engines | |
- name: Install Dependencies | |
uses: borales/[email protected] | |
with: | |
cmd: install --ignore-engines # will run `yarn install` command | |
- name: Validate featured markets schema | |
uses: borales/[email protected] | |
with: | |
cmd: validate # validate using json schema | |
- name: Test market entries for invalid/duplicate markets | |
uses: borales/[email protected] | |
with: | |
cmd: check-configs mainnet testnet devnet # check using check_configs.ts script |