Skip to content

Mobile/UX overhaul: collapsible cards, topic filter, progress & resu… #8

Mobile/UX overhaul: collapsible cards, topic filter, progress & resu…

Mobile/UX overhaul: collapsible cards, topic filter, progress & resu… #8

Workflow file for this run

name: Link check
# Fails a PR (or push to main) if any internal link in docs/ points at a file
# that doesn't exist — the failure mode that folder moves and slug renames cause.
on:
push:
branches: [main]
paths: ['docs/**', 'scripts/check-broken-links.js', '.github/workflows/link-check.yml']
pull_request:
paths: ['docs/**', 'scripts/check-broken-links.js', '.github/workflows/link-check.yml']
jobs:
links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
# Zero dependencies — the checker uses only Node built-ins, so no install step.
- run: node scripts/check-broken-links.js