2023-09-19 20:22:20 +00:00
|
|
|
name: Check links with Lychee
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "docs/**"
|
|
|
|
- "*.md"
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
# Remove default permissions of GITHUB_TOKEN for security
|
|
|
|
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
|
|
|
|
permissions: {}
|
|
|
|
|
|
|
|
jobs:
|
2023-09-21 07:50:20 +00:00
|
|
|
link-checker:
|
2023-09-19 20:22:20 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
# Cache lychee results (e.g. to avoid hitting rate limits)
|
|
|
|
- name: Restore lychee cache
|
|
|
|
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
|
|
|
|
with:
|
|
|
|
path: .lycheecache
|
|
|
|
key: cache-lychee-${{ github.sha }}
|
|
|
|
restore-keys: cache-lychee-
|
|
|
|
|
|
|
|
# check links with Lychee
|
2023-10-18 09:06:36 +00:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-09-19 20:22:20 +00:00
|
|
|
|
|
|
|
- name: Lychee link checker
|
2023-09-19 22:08:48 +00:00
|
|
|
uses: lycheeverse/lychee-action@2ac9f030ccdea0033e2510a23a67da2a2da98492 # for v1.8.0
|
2023-09-19 20:22:20 +00:00
|
|
|
with:
|
|
|
|
# arguments with file types to check
|
|
|
|
args: >-
|
|
|
|
--cache
|
|
|
|
--verbose
|
|
|
|
--no-progress
|
|
|
|
--max-cache-age=1d
|
|
|
|
'./**/*.md'
|
|
|
|
'./**/*.html'
|
|
|
|
# fail the action on broken links
|
|
|
|
fail: true
|
|
|
|
env:
|
|
|
|
# to be used in case rate limits are surpassed
|
|
|
|
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|