Skip to content

Commit 1644012

Browse files
chore: Update Markdown Lint Check configuration (#1980)
* Update Markdown Lint Check configuration Removed continue-on-error option for Markdown Lint Check and exclude .github folder * ci: Update .github/workflows/ci-markdownlint.yml Co-authored-by: Kayla Reopelle <[email protected]> --------- Co-authored-by: Kayla Reopelle <[email protected]>
1 parent ffd8ecd commit 1644012

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-markdownlint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15-
# equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" --config .markdownlint.json
15+
# equivalent cli: markdownlint-cli2 "**/*.md" "#**/CHANGELOG.md" "#.github/**" --config .markdownlint.json
1616
- name: "Markdown Lint Check"
1717
uses: DavidAnson/markdownlint-cli2-action@v19
18-
continue-on-error: true
1918
with:
19+
config: .markdownlint.json
2020
fix: false
2121
globs: |
2222
**/*.md
2323
!**/CHANGELOG.md
24+
!.github/**

0 commit comments

Comments
 (0)