Skip to content

Commit 19fe874

Browse files
committed
remove: remove markdownlint job CI workflow
1 parent aebc3bf commit 19fe874

File tree

1 file changed

+5
-21
lines changed

1 file changed

+5
-21
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,39 +7,23 @@ on:
77
branches: [ main ]
88

99
jobs:
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)

0 commit comments

Comments
 (0)