Skip to content

Delete DRAFT_CHANGELOG.md #63

Delete DRAFT_CHANGELOG.md

Delete DRAFT_CHANGELOG.md #63

Workflow file for this run

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