Skip to content

Commit 326ef51

Browse files
authored
Create Static Analysis.yml
1 parent 6d382e9 commit 326ef51

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)