-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary quotes from YAML code/examples, standardize on sin…
…gle (vs. double) quotes, add test for invalid configuration file.
- Loading branch information
1 parent
a82aa2e
commit b20e49c
Showing
3 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
name: 'markdownlint-cli2-action' | ||
author: 'David Anson' | ||
description: 'A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library' | ||
name: markdownlint-cli2-action | ||
author: David Anson | ||
description: A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library | ||
branding: | ||
icon: 'check-square' | ||
color: 'orange' | ||
icon: check-square | ||
color: orange | ||
inputs: | ||
command: | ||
description: 'Command to run (unset, "fix", or "config")' | ||
description: Command to run (unset, "fix", or "config") | ||
default: '' | ||
required: false | ||
globs: | ||
description: 'Glob expression(s) of files to lint (newline-delimited)' | ||
description: Glob expression(s) of files to lint (newline-delimited) | ||
default: '*.{md,markdown}' | ||
required: false | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: node16 | ||
main: dist/index.js |