Skip to content

Update GitHub Actions (major) #229

Update GitHub Actions (major)

Update GitHub Actions (major) #229

Workflow file for this run

name: lint
on: # Rebuild any PRs and main branch changes
push:
branches:
- main
pull_request:
jobs:
markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: ⬇️ lint markdown files # Lints all markdown (.md) files
uses: avto-dev/markdown-lint@v1
with:
config: '.markdownlint.json'
args: '**/*.md .github/**/*.md'
renovate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🧼 lint renovate config # Validates changes to renovate.json config file
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.0.0
with:
config_file_path: 'default.json'