Skip to content

Commit a6f5749

Browse files
committed
#23 added MD linter step
1 parent 1c20935 commit a6f5749

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/codeChecks.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,15 @@ jobs:
136136
with:
137137
path: ./cmakelint-format-report.txt
138138
name: cmakelint-format-report.txt
139+
- name: MarkDown Lint check
140+
run: |
141+
echo "==================Installing markdownlint-cli====================================="
142+
npm install -g markdownlint-cli
143+
echo "==================Running markdownlint====================================="
144+
FILES=$(find . -name "*.md" -not -path "./.github/*")
145+
markdownlint $FILES > ./markdownlint-report.txt || true
146+
- name: Upload markdownlint report to git hub storage to use later
147+
uses: actions/upload-artifact@v4
148+
with:
149+
path: ./markdownlint-report.txt
150+
name: markdownlint-report.txt

0 commit comments

Comments
 (0)