File tree Expand file tree Collapse file tree 1 file changed +5
-21
lines changed
Expand file tree Collapse file tree 1 file changed +5
-21
lines changed Original file line number Diff line number Diff line change 77 branches : [ main ]
88
99jobs :
10- markdown-lint :
11- runs-on : ubuntu-latest
12- steps :
13- - uses : actions/checkout@v3
14-
15- - name : Setup Node.js
16- uses : actions/setup-node@v3
17- with :
18- node-version : 16
19-
20- - name : Install markdownlint-cli
21- run : npm install -g markdownlint-cli
22-
23- - name : Run markdownlint
24- run : markdownlint '**/*.md' --ignore node_modules
25-
2610 check-links :
2711 runs-on : ubuntu-latest
2812 steps :
2913 - uses : actions/checkout@v3
30-
14+
3115 - name : Setup Node.js
3216 uses : actions/setup-node@v3
3317 with :
3418 node-version : ' 16'
35-
19+
3620 - name : Install dependencies
3721 run : npm install -g markdown-link-check
38-
22+
3923 - name : Check links
4024 run : ./tools/check_links.sh
41-
25+
4226 - name : Generate TOC
4327 run : |
4428 python3 ./tools/generate_summary.py
45- git diff --exit-code SUMMARY.md || (echo "SUMMARY.md is out of date. Please run ./tools/generate_summary.py and commit the changes" && exit 1)
29+ git diff --exit-code SUMMARY.md || (echo "SUMMARY.md is out of date. Please run ./tools/generate_summary.py and commit the changes" && exit 1)
You can’t perform that action at this time.
0 commit comments