We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 548274a commit 822abc0Copy full SHA for 822abc0
1 file changed
.github/workflows/lint.yml
@@ -1,4 +1,4 @@
1
-name: Lint Galette Website
+name: Check dead links
2
on:
3
push:
4
branches:
@@ -29,4 +29,11 @@ jobs:
29
- name: HTML5Validator
30
uses: Cyb3r-Jak3/html5validator-action@v8.0.0
31
with:
32
- root: public/
+ root: public/
33
+ - name: Link Checker
34
+ id: lychee
35
+ uses: lycheeverse/lychee-action@v2
36
+ with:
37
+ # Check all Markdown, HTML and reStructuredText files in repo (default)
38
+ args: --verbose --no-progress './public/**/*.html' -b https://galette.eu/
39
+ fail: true
0 commit comments