Skip to content

Commit f4b3536

Browse files
committed
fix: resolve markdown lint errors:
Signed-off-by: jbrinkman <[email protected]>
1 parent 35727c9 commit f4b3536

File tree

2 files changed

+34
-42
lines changed

2 files changed

+34
-42
lines changed

.github/workflows/documentation.yml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,48 +2,48 @@ name: Documentation
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
paths:
7-
- '**/*.md'
8-
- 'docs/**'
7+
- "**/*.md"
8+
- "docs/**"
99
pull_request:
10-
branches: [ main ]
10+
branches: [main]
1111
paths:
12-
- '**/*.md'
13-
- 'docs/**'
12+
- "**/*.md"
13+
- "docs/**"
1414

1515
jobs:
1616
markdown-lint:
1717
runs-on: ubuntu-latest
18-
18+
1919
steps:
20-
- uses: actions/checkout@v4
21-
22-
- name: Setup Node.js
23-
uses: actions/setup-node@v4
24-
with:
25-
node-version: '20'
26-
27-
- name: Install markdownlint-cli
28-
run: npm install -g markdownlint-cli
29-
30-
- name: Run markdownlint
31-
run: markdownlint '**/*.md' --ignore node_modules
32-
20+
- uses: actions/checkout@v4
21+
22+
- name: Setup Node.js
23+
uses: actions/setup-node@v4
24+
with:
25+
node-version: "20"
26+
27+
- name: Install markdownlint-cli
28+
run: npm install -g markdownlint-cli
29+
30+
- name: Run markdownlint
31+
run: markdownlint '**/*.md' --disable MD036 --ignore node_modules
32+
3333
broken-links:
3434
runs-on: ubuntu-latest
35-
35+
3636
steps:
37-
- uses: actions/checkout@v4
38-
39-
- name: Setup Node.js
40-
uses: actions/setup-node@v4
41-
with:
42-
node-version: '20'
43-
44-
- name: Install markdown-link-check
45-
run: npm install -g markdown-link-check
46-
47-
- name: Check for broken links
48-
run: |
49-
find . -name "*.md" -not -path "./node_modules/*" | xargs -n1 markdown-link-check -q
37+
- uses: actions/checkout@v4
38+
39+
- name: Setup Node.js
40+
uses: actions/setup-node@v4
41+
with:
42+
node-version: "20"
43+
44+
- name: Install markdown-link-check
45+
run: npm install -g markdown-link-check
46+
47+
- name: Check for broken links
48+
run: |
49+
find . -name "*.md" -not -path "./node_modules/*" | xargs -n1 markdown-link-check -q

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -676,14 +676,6 @@ task coverage
676676
5. **Ensure all tests pass** including code coverage requirements
677677
6. **Submit a pull request** with a clear description
678678

679-
### Project Structure
680-
681-
- `src/DotNetApiDiff/` - Main application code
682-
- `tests/DotNetApiDiff.Tests/` - Unit and integration tests
683-
- `samples/` - Sample configuration files
684-
- `docs/` - Additional documentation
685-
- `.github/workflows/` - CI/CD pipeline definitions
686-
687679
## 📄 License
688680

689681
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)