Skip to content

Commit 21b3486

Browse files
Check links with lychee in docs workflow
1 parent 33066a1 commit 21b3486

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/docs.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,22 @@ on:
88
permissions:
99
contents: write
1010
jobs:
11+
check-links:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout repo
15+
uses: actions/checkout@v4
16+
17+
- name: Check links
18+
uses: lycheeverse/lychee-action@v2
19+
with:
20+
fail: true
21+
workingDirectory: docs
22+
jobSummary: false
23+
1124
deploy:
1225
runs-on: ubuntu-latest
26+
needs: check-links
1327
steps:
1428
- name: Checkout repo
1529
uses: actions/checkout@v4

0 commit comments

Comments
 (0)