Skip to content

Commit

Permalink
Add simple workflow to validate Renovate configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 authored Dec 19, 2023
1 parent 9c00978 commit 75a7cd0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Validate Renovate

on:
pull_request:
paths:
- "**/renovate.json"
- "**/renovate.json5"

jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: latest

- name: Install dependencies
run: npm install -g renovate

- name: Validate Renovate config
run: renovate-config-validator --strict

0 comments on commit 75a7cd0

Please sign in to comment.