-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check-links: check all links in
pages/
with Lycheee (will be remove…
…d later)
- Loading branch information
1 parent
46c7b80
commit 634ba00
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Check links with Lychee | ||
|
||
on: ['push', 'pull_request', 'workflow_dispatch'] | ||
|
||
jobs: | ||
check-links: | ||
runs-on: ubuntu-latest | ||
env: | ||
LYCHEE_FILE: "lychee/out.md" | ||
steps: | ||
- name: Restore lychee cache | ||
id: restore-cache | ||
uses: actions/cache/restore@v4 | ||
with: | ||
path: .lycheecache | ||
key: cache-lychee-${{ github.sha }} | ||
restore-keys: cache-lychee- | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.12' | ||
cache: 'pip' | ||
|
||
- run: | | ||
echo $(grep -rh "More information: " tldr/pages | sort -u) > links.txt | ||
- name: Lychee URL checker | ||
uses: lycheeverse/lychee-action@v1 | ||
id: lychee | ||
with: | ||
args: >- | ||
--cache | ||
--verbose | ||
--no-progress | ||
--accept 100..=103,200..=299,429 | ||
--max-concurrency 25 | ||
--exclude-all-private | ||
links.txt | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Sort failed URLs alphabetically | ||
run: python3 scripts/sort-lychee-output.py | ||
|
||
- name: Upload Lychee output as GitHub Job Summary | ||
run: cat ${{ env.LYCHEE_FILE }} > $GITHUB_STEP_SUMMARY |