mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-12-22 21:03:53 +01:00
1.3 KiB
1.3 KiB
markdownlint-cli2-action
A GitHub Action to run the markdownlint-cli2
tool
for linting Markdown/CommonMark files with
markdownlint
Inputs
globs (optional)
Glob expression(s) of files to lint (newline-delimited)
The default *.{md,markdown}
lints all Markdown files in the base directory
of a project.
For more detail, read about glob syntax in markdownlint-cli2
.
Outputs
[None]
Examples
To lint Markdown files in the base directory of a project:
- uses: DavidAnson/markdownlint-cli2-action@v3
To lint all Markdown files in a project:
- uses: DavidAnson/markdownlint-cli2-action@v3
with:
globs: **/*.md
To lint specific Markdown files in a project:
- uses: DavidAnson/markdownlint-cli2-action@v3
with:
globs: |
README.md
CHANGELOG.md
docs/*.md
See example.yml
for a simple GitHub workflow that uses
markdownlint-cli2-action
.