feat(nomicfoundation): add vscode lsp schema #16152
Workflow file for this run
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 Renovate config | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
validate: | |
name: Validate renovate config | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check for config changes | |
id: diff | |
uses: tj-actions/changed-files@v44 | |
with: | |
files: | | |
renovate.json5 | |
- shell: bash | |
if: ${{ steps.diff.outputs.any_changed == 'true' }} | |
run: | | |
set +o pipefail | |
npx -y -p renovate -c renovate-config-validator \ | |
| tee /dev/stderr \ | |
| grep -Evz '(ERROR|could not be parsed)' |