We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1898c5 commit 1cae679Copy full SHA for 1cae679
.github/workflows/basic-qa.yml
@@ -23,3 +23,26 @@ jobs:
23
uses: PHPCSStandards/.github/.github/workflows/reusable-yamllint.yml@main
24
with:
25
strict: true
26
+
27
+ linkcheck:
28
+ name: "Check links"
29
+ runs-on: ubuntu-latest
30
31
+ steps:
32
+ - name: Checkout code
33
+ uses: actions/checkout@v4
34
35
+ - name: Restore lychee cache
36
+ uses: actions/cache@v4
37
+ with:
38
+ path: .lycheecache
39
+ key: cache-lychee-${{ github.sha }}
40
+ restore-keys: cache-lychee-
41
42
+ - name: Link Checker
43
+ uses: lycheeverse/lychee-action@v2
44
45
+ args: --cache --max-cache-age 1w --verbose './**/*.md'
46
+ format: markdown
47
+ token: ${{ secrets.GITHUB_TOKEN }}
48
+ fail: true
0 commit comments