Skip to content

Commit

Permalink
New workflow: test
Browse files Browse the repository at this point in the history
  • Loading branch information
thypon committed Feb 29, 2024
1 parent f45da88 commit 08facff
Show file tree
Hide file tree
Showing 4 changed files with 8,477 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Validate Renovate Config

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master

jobs:
validate:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0

- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '20.x'

- name: Validate Renovate config
run: npx --yes --package renovate -- renovate-config-validator default.json

needs_migration:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0

- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: '20.x'

- name: Validate Renovate config
run: npx --yes --package renovate -- renovate-config-validator --strict default.json
31 changes: 31 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Node.js
node_modules/
npm-debug.log
yarn-error.log

# Editors
.idea/
.vscode/
*.swp
*.swo
*.swn
*.bak
*.orig
*.sublime-*
*.iml

# Operating Systems
# macOS
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Desktop.ini

# Windows
Thumbs.db
Desktop.ini
Loading

0 comments on commit 08facff

Please sign in to comment.