Delete DRAFT_CHANGELOG.md #63
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
| name: Markdown Link Check | |
| on: | |
| push: | |
| paths: | |
| - '**.md' | |
| pull_request: | |
| paths: | |
| - '**.md' | |
| jobs: | |
| markdown-link-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install markdown-link-check | |
| run: npm install -g markdown-link-check | |
| - name: Run markdown-link-check on all Markdown files | |
| run: | | |
| find . -name "*.md" -print0 | xargs -0 -n1 markdown-link-check |