mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
name: Check links with Lychee
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "docs/**"
|
|
- "*.md"
|
|
branches:
|
|
- main
|
|
- 3.x
|
|
|
|
# Remove default permissions of GITHUB_TOKEN for security
|
|
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
|
|
permissions: {}
|
|
|
|
jobs:
|
|
link-checker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Cache lychee results (e.g. to avoid hitting rate limits)
|
|
- name: Restore lychee cache
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
|
with:
|
|
path: .lycheecache
|
|
key: cache-lychee-${{ github.sha }}
|
|
restore-keys: cache-lychee-
|
|
|
|
# check links with Lychee
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Lychee link checker
|
|
uses: lycheeverse/lychee-action@d4128702eae98bbc5ecf74df0165a8156c80920a # for v1.8.0
|
|
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}}
|