Add demex points config and perp pool promo #238
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 Config Data | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set Node-js version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.14.2' | |
- name: Install Dependencies | |
run: yarn install --ignore-engines # will run `yarn install` command | |
- name: Validate config schema | |
run: yarn validate # validate using json schema | |
- name: Test market entries for invalid/duplicate markets | |
run: yarn check-configs mainnet testnet devnet # check using check_configs.ts script |