chore: sync all dependency groups by default and run mypy locally #1022
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: | |
| - '.github/workflows/validate-renovate-config.yml' | |
| - '.github/renovate.json5' | |
| push: | |
| branches: [main] | |
| env: | |
| # renovate: datasource=node depName=node versioning=node | |
| NODE_VERSION: '24' | |
| permissions: {} | |
| jobs: | |
| validate-renovate-config: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - run: npx -p renovate renovate-config-validator |