.github/workflows | ||
config | ||
dist | ||
test | ||
.eslintrc.json | ||
.gitignore | ||
.npmrc | ||
action.yml | ||
LICENSE | ||
markdownlint-cli2-action.js | ||
package.json | ||
README.md |
markdownlint-cli2-action
A GitHub Action to run the
markdownlint-cli2
tool for linting Markdown/CommonMark files withmarkdownlint
markdownlint-cli2
has extensive support for configuring options and
disabling or customizing markdownlint
rules. See the
markdownlint-cli2
README for more information.
markdownlint
includes a wide variety of rules for analyzing and improving
Markdown content. See the markdownlint
README for more
information.
Inputs
command (optional)
Command to run (unset, fix
, or config
)
If unspecified or ""
, the markdownlint-cli2
command is run.
If set to fix
, the markdownlint-cli2-fix
command is run and supported
issues will be fixed automatically.
If set to config
, the markdownlint-cli2-config
command is run and the
first element of globs
should specify a supported configuration file.
For more detail: documentation for markdownlint-cli2
.
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: glob syntax in markdownlint-cli2
.
Outputs
[None]
Examples
To lint Markdown files in the base directory of a project:
- uses: DavidAnson/markdownlint-cli2-action@v5
To lint all Markdown files in a project:
- uses: DavidAnson/markdownlint-cli2-action@v5
with:
globs: "**/*.md"
To lint specific Markdown files in a project:
- uses: DavidAnson/markdownlint-cli2-action@v5
with:
globs: |
README.md
CHANGELOG.md
docs/*.md
To prevent linting issues from failing the workflow run:
- uses: DavidAnson/markdownlint-cli2-action@v5
continue-on-error: true
See example.yml
for a simple GitHub workflow that uses
markdownlint-cli2-action
.