Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 34 additions & 34 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,48 +2,48 @@ name: Documentation

on:
push:
branches: [ main ]
branches: [main]
paths:
- '**/*.md'
- 'docs/**'
- "**/*.md"
- "docs/**"
pull_request:
branches: [ main ]
branches: [main]
paths:
- '**/*.md'
- 'docs/**'
- "**/*.md"
- "docs/**"

jobs:
markdown-lint:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint '**/*.md' --ignore node_modules
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install markdownlint-cli
run: npm install -g markdownlint-cli

- name: Run markdownlint
run: markdownlint '**/*.md' --disable MD036 --ignore node_modules

broken-links:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install markdown-link-check
run: npm install -g markdown-link-check
- name: Check for broken links
run: |
find . -name "*.md" -not -path "./node_modules/*" | xargs -n1 markdown-link-check -q
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install markdown-link-check
run: npm install -g markdown-link-check

- name: Check for broken links
run: |
find . -name "*.md" -not -path "./node_modules/*" | xargs -n1 markdown-link-check -q
2 changes: 1 addition & 1 deletion .kiro/specs/dotnet-api-diff/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ Each task should follow this git workflow:
- **Git Workflow**: Create branch `feature/task-9.1-performance`, commit, push, and create PR
- _Requirements: 1.1, 1.2_

- [ ] 9.2 Final integration and documentation
- [x] 9.2 Final integration and documentation
- Create comprehensive README with usage examples
- Add sample configuration files and GitHub workflow examples
- Perform final end-to-end testing with real-world assemblies
Expand Down
Loading
Loading