We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d382e9 commit 326ef51Copy full SHA for 326ef51
.github/workflows/Static Analysis.yml
@@ -0,0 +1,16 @@
1
+---
2
+name: Static Analysis
3
+on: [push]
4
+jobs:
5
+ Markdown_Lint_Check:
6
+ name: Markdown Lint Check
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Install markdownlint-cli
10
+ run: npm install -g markdownlint-cli
11
+ - name: Checkout code
12
+ uses: actions/checkout@v2
13
+ - name: Run markdownlint
14
+ run: |
15
+ echo "Checking Markdown files"
16
+ find . -type f -name "*.md" -print0 | xargs -0 markdownlint
0 commit comments