mirror of
https://github.com/yanhao98/renovate-example.git
synced 2025-07-13 11:40:49 +08:00
22 lines
519 B
YAML
22 lines
519 B
YAML
name: Check Renovate Configuration
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: yanhao98/composite-actions/setup-node-environment@main
|
|
- name: 检查配置
|
|
run: |
|
|
set -ex
|
|
pnpm renovate-config-validator;
|
|
pnpm run validator;
|
|
|
|
LOG_LEVEL=debug pnpm dlx renovate --token= --platform=local --dry-run # DEBUG: packageFiles with updates (repository=local);
|
|
|
|
- name: for regex
|
|
run: npx semantic-release@24
|
|
if: false
|