chore(deps): update dependency architect to v5.3.1 (#269) #774
This file contains 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: Check Markdown links | |
on: push | |
jobs: | |
markdown-link-check: | |
name: Broken Links | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository content | |
uses: actions/checkout@v4 | |
with: | |
show-progress: false | |
- name: Install markdown-link-check | |
run: npm install -g [email protected] | |
- name: Run markdown-link-check | |
run: | | |
find content/docs -type f -name '*.md' | \ | |
xargs markdown-link-check \ | |
--quiet \ | |
--config ./.github/workflows/markdown-link-check.json |