Skip to content

Commit

Permalink
chore: Create renovate_config_check.yaml (#1920)
Browse files Browse the repository at this point in the history
* chore: Create renovate_config_check.yaml
  • Loading branch information
ddixit14 authored Jan 22, 2024
1 parent 86b9411 commit 6612ab8
Showing 1 changed file with 25 additions and 0 deletions.
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:
renovate_bot_config_validation:
runs-on: ubuntu-22.04

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 6612ab8

Please sign in to comment.