Skip to content

Renamed lychee workflow/filename #1

Renamed lychee workflow/filename

Renamed lychee workflow/filename #1

name: Check links on push + PR
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
lychee:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Check links
uses: lycheeverse/lychee-action@v2.8.0
with:
# Check all markdown files, but ignore local fragments and common anti-bot/rate-limited endpoints
args: --verbose --no-progress --accept 200..299,300..399,403,429 --exclude "ghostbrowser\.com" "*.md" "**/*.md" --exclude api\.star-history\.com
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}