Merge pull request #5754 from iawia002/docs #3051
This file contains hidden or 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 docs | |
on: | |
push: | |
branches: | |
- main | |
- release-* | |
paths: | |
- '**.md' | |
- .github/workflows/docs.yml | |
- .markdownlint.jsonc | |
pull_request: | |
branches: | |
- main | |
- release-* | |
paths: | |
- '**.md' | |
- .github/workflows/docs.yml | |
- .markdownlint.jsonc | |
jobs: | |
lint: | |
name: Lint markdown | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DavidAnson/[email protected] | |
with: | |
config: .markdownlint.jsonc | |
globs: '**/*.md' |