Update all non-major dependencies #410
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: lint | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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@v3 | |
- name: 🧼 lint renovate config # Validates changes to renovate.json config file | |
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.2 | |
with: | |
config_file_path: 'renovate.json' |