Update 0xFD03AbCAdaF3F930fA4E37Eb2f6ea3A44a41b7F0.json #166
Workflow file for this run
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 |