Check repo root and docs/docs separately #2182
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: | ||
Check markdown links in the repo root: | ||
Check failure on line 4 in .github/workflows/linkchecker.yml GitHub Actions / Check Markdown linksInvalid workflow file
|
||
runs-on: ubuntu-latest | ||
steps: | ||
# Check out the latest version of the code | ||
- uses: actions/checkout@v4 | ||
# Checks the status of hyperlinks in *.md files in the repo root | ||
- uses: gaurav-nelson/[email protected] | ||
with: | ||
folder-path: '.' | ||
max-depth: 1 | ||
Check markdown links in docs/docs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Check out the latest version of the code | ||
- uses: actions/checkout@v4 | ||
# Checks the status of hyperlinks in *.md files in the docs/docs folder | ||
- uses: gaurav-nelson/[email protected] | ||
with: | ||
folder-path: 'docs/docs' |