Skip to content

Commit

Permalink
introduce validate renovate.json workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Jan 22, 2024
1 parent 942579c commit 715397e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: validate / renovate.json

on:
pull_request:
paths:
- "renovate.json"
- ".github/workflows/validate-renovate.yml"
merge_group:

jobs:
validate-renovate:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-node@v4.0.1

- name: install
run: |
npm install -g renovate
- name: validate
run: |
renovate-config-validator

0 comments on commit 715397e

Please sign in to comment.