We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1076aad commit 4d73021Copy full SHA for 4d73021
2 files changed
.github/workflows/check-readme.yml
@@ -0,0 +1,25 @@
1
+name: Check README links
2
+
3
+concurrency:
4
+ group: wf-${{github.event.pull_request.number || github.sha}}-${{github.workflow}}
5
+ cancel-in-progress: true
6
7
+on:
8
+ pull_request:
9
+ push:
10
+ branches:
11
+ - "[0-9][0-9].[0-9].[0-9]*"
12
13
+jobs:
14
+ link-check:
15
+ name: Check README links
16
+ runs-on: ubuntu-latest
17
+ timeout-minutes: 10
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v4
21
22
+ - name: Check links in README
23
+ uses: lycheeverse/lychee-action@v1
24
+ with:
25
+ args: --verbose --no-progress './**/[Rr][Ee][Aa][Dd][Mm][Ee].md' --exclude-file .lycheeignore
.lycheeignore
@@ -0,0 +1,3 @@
+https://www.devexpress.com/support/examples/survey.xml?*
+https://supportcenter.devexpress.com/ticket/create
+http*://localhost*
0 commit comments