File tree Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Check Markdown Links
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ linkcheck :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ - uses : actions/setup-node@v4
11
+ with :
12
+ node-version : " 20"
13
+ - run : npm install -g markdown-link-check
14
+ - run : find . -name "*.md" -exec markdown-link-check {} \;
Original file line number Diff line number Diff line change
1
+ name : Markdown Lint
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ markdownlint :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ - uses : actions/setup-node@v4
11
+ with :
12
+ node-version : " 20"
13
+ - run : npm install -g markdownlint-cli
14
+ - run : markdownlint "**/*.md" --ignore node_modules
Original file line number Diff line number Diff line change
1
+ name : Spell Check
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ spellcheck :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ - uses : actions/setup-node@v4
11
+ with :
12
+ node-version : " 20"
13
+ - run : npm install -g cspell
14
+ - run : cspell "**/*.md"
You can’t perform that action at this time.
0 commit comments