Skip to content

chore(deps): update github-actions (#136) #331

chore(deps): update github-actions (#136)

chore(deps): update github-actions (#136) #331

Workflow file for this run

# https://github.com/hatena/renovate-config/blob/687964addf81a21051571d09a4829af43bc00ab4/.github/workflows/validate-config.yml
name: Validate renovate config
on:
push:
branches: [main]
pull_request:
env:
# renovate: datasource=node-version depName=node
NODE_VERSION: '22.13.1'
jobs:
build:
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
with:
node-version: '${{ env.NODE_VERSION }}'
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
with:
path: ~/.npm
key: ${{ runner.os }}-node
- name: Validate renovate config
run: |
for file in *.json*
do
echo "[CI] Let's validate $file"
RENOVATE_CONFIG_FILE=${file} npx --package renovate -c 'renovate-config-validator'
done