We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c20935 commit a6f5749Copy full SHA for a6f5749
1 file changed
.github/workflows/codeChecks.yml
@@ -136,3 +136,15 @@ jobs:
136
with:
137
path: ./cmakelint-format-report.txt
138
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