We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 210aa55 commit b6652b6Copy full SHA for b6652b6
.github/workflows/link-check.yml
@@ -0,0 +1,30 @@
1
+name: Link Check
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - '**/*.md'
7
+ - '**/*.mdx'
8
+ - '**/*.html'
9
+ - 'docs/**'
10
+ - 'blog/**'
11
+ - 'static/**'
12
+ - 'docusaurus.config.js'
13
+ - 'sidebars.js'
14
+ schedule:
15
+ - cron: '0 3 * * 1'
16
+ workflow_dispatch:
17
18
+jobs:
19
+ lychee:
20
+ name: Check links with lychee
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - name: Checkout
24
+ uses: actions/checkout@v4
25
+ - name: Run lychee
26
+ uses: lycheeverse/lychee-action@v1.10.0
27
+ with:
28
+ args: "--verbose --no-progress --exclude-mail"
29
+ env:
30
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments