Skip to content

Commit 6612ab8

Browse files
authored
chore: Create renovate_config_check.yaml (#1920)
* chore: Create renovate_config_check.yaml
1 parent 86b9411 commit 6612ab8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Renovate Bot Config Validation
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'renovate.json'
7+
8+
jobs:
9+
renovate_bot_config_validation:
10+
runs-on: ubuntu-22.04
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: '20'
20+
21+
- name: Install Renovate and Config Validator
22+
run: |
23+
npm install -g npm@latest
24+
npm install --global renovate
25+
renovate-config-validator

0 commit comments

Comments
 (0)