chore(deps-dev): bump cspell from 6.15.0 to 8.1.3 #311
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: Link Check | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/link-check.yml" | |
- ".markdown-link-check.json" | |
- "link-check.js" | |
- "package*.json" | |
- "**/*.md" | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
paths: | |
- ".github/workflows/link-check.yml" | |
- ".markdown-link-check.json" | |
- "link-check.js" | |
- "package*.json" | |
- "**/*.md" | |
jobs: | |
link-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run link checks | |
run: npm run link-check |