File tree Expand file tree Collapse file tree 2 files changed +34
-42
lines changed
Expand file tree Collapse file tree 2 files changed +34
-42
lines changed Original file line number Diff line number Diff line change @@ -2,48 +2,48 @@ name: Documentation
22
33on :
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
1515jobs :
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
Original file line number Diff line number Diff line change @@ -676,14 +676,6 @@ task coverage
6766765. **Ensure all tests pass** including code coverage requirements
6776776. **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
689681This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
You can’t perform that action at this time.
0 commit comments