Create 0xeF1eC136931Ab5728B0783FD87D109c9D15D31F1.json #71
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 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 |