Skip to content

Commit

Permalink
Merge branch 'main' into record-dropped
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlias authored Apr 10, 2024
2 parents 312bc67 + fb02927 commit 549567e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/links-fail-fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Restore lychee cache
uses: actions/cache@v4
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-

- name: Link Checker
uses: lycheeverse/[email protected]
with:
fail: true
args: --max-concurrency 5 .
args: --max-concurrency 5 --cache --max-cache-age 1d .
10 changes: 9 additions & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,19 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4


- name: Restore lychee cache
uses: actions/cache@v4
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-

- name: Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
args: --max-concurrency 5 .
args: --max-concurrency 1 --cache --max-cache-age 1d .

- name: Create Issue From File
if: steps.lychee.outputs.exit_code != 0
Expand Down

0 comments on commit 549567e

Please sign in to comment.