Skip to content

feat(ci): add external link checker workflow #1

feat(ci): add external link checker workflow

feat(ci): add external link checker workflow #1

Workflow file for this run

name: Check External Links

Check failure on line 1 in .github/workflows/external-links.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/external-links.yml

Invalid workflow file

invalid `cron` attribute "59 23 * * 7"
on:
schedule:
- cron: "59 23 * * 7" # Runs every Sunday at 23:59 UTC
workflow_dispatch: # Allows manual trigger of the workflow
jobs:
check-external-links:
name: Check External Links
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Dependencies
run: npm ci
- name: Run External Link Checks
run: npm run linkcheck-external