Skip to content

v0.0.7

v0.0.7 #21

Workflow file for this run

name: Validate renovate config
on:
push:
branches:
- main
paths:
- '*.json'
pull_request:
paths:
- '*.json'
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setting up Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 20.x
- name: Validate renovate config
run: |
for file in *.json
do
echo "[CI] Validating $file"
RENOVATE_CONFIG_FILE=${file} npx --yes --package renovate -- renovate-config-validator --strict
done