Add new exclusive relayer 0xc35f166c03199138BB5aa4e327FeE967Ab9bBc67 #157
This file contains hidden or 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 configs | |
| on: | |
| pull_request: | |
| paths: | |
| - "configs/**" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| validate_configs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: yarn | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile --ignore-scripts | |
| shell: bash | |
| - name: Validate configs | |
| id: validation_result | |
| run: yarn validate-configs | |
| shell: bash |