markdownlint #682
Workflow file for this run
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: markdownlint | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- '**/*.md' | |
- '**/*.mdx' | |
- '.markdownlint.json' | |
merge_group: # Needed for required workflows | |
# Run after a review has been submitted (this is a required workflow which | |
# might not be triggered when no code changes -- trigger before going to | |
# merge queue). | |
pull_request_review: | |
types: [submitted] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DavidAnson/markdownlint-cli2-action@v19 | |
with: | |
config: .markdownlint.json | |
globs: | | |
*.md | |
**/*.md |