Fix comprehensive CI/CD pipeline issues and repository cleanup #78
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Markdown Lint | |
| # This workflow runs markdownlint on all Markdown files in the repository | |
| name: Markdown Lint | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| paths: | |
| - '**/*.md' | |
| pull_request: | |
| paths: | |
| - '**/*.md' | |
| jobs: | |
| markdown-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up 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 -c .github/linters/.markdown-lint.yml '**/*.md' > markdownlint-report.txt || true | |
| - name: Upload markdownlint report | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: markdownlint-report | |
| path: markdownlint-report.txt |