Skip to content

Check repo root and docs/docs separately #2182

Check repo root and docs/docs separately

Check repo root and docs/docs separately #2182

Workflow file for this run

name: Check Markdown links
on: push
jobs:
Check markdown links in the repo root:

Check failure on line 4 in .github/workflows/linkchecker.yml

View workflow run for this annotation

GitHub Actions / Check Markdown links

Invalid workflow file

The workflow is not valid. .github/workflows/linkchecker.yml (Line: 4, Col: 3): The identifier 'Check markdown links in the repo root' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters. .github/workflows/linkchecker.yml (Line: 15, Col: 3): The identifier 'Check markdown links in docs/docs' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
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'