Skip to content

Commit

Permalink
chore: renovate bot config validation (#2404)
Browse files Browse the repository at this point in the history
* chore: add renovate bot config validation workflow.
  • Loading branch information
ddixit14 committed Jan 22, 2024
1 parent f22c012 commit 71e2333
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/renovate_config_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Renovate Bot Config Validation

on:
pull_request:
paths:
- 'renovate.json'

jobs:
config_validation:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'

- name: Install Renovate and Config Validator
run: |
npm install -g npm@latest
npm install --global renovate
renovate-config-validator

0 comments on commit 71e2333

Please sign in to comment.