chore(repo): Re-enable Renovate automatic dependency updates #137
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 Renovate Config | |
| on: | |
| pull_request: | |
| paths: | |
| - 'renovate.json5' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| validate-renovate-config: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| id: config | |
| uses: ./.github/actions/init | |
| with: | |
| turbo-signature: ${{ secrets.TURBO_REMOTE_CACHE_SIGNATURE_KEY }} | |
| turbo-team: ${{ vars.TURBO_TEAM }} | |
| playwright-enabled: true # Must be present to enable caching on branched workflows | |
| turbo-token: ${{ secrets.TURBO_TOKEN }} | |
| - name: Validate Renovate Config | |
| run: npx --yes --package renovate@latest renovate-config-validator |