Skip to content

Commit 759804d

Browse files
committed
Adding Link Checker
Signed-off-by: A.Arnold <[email protected]>
1 parent d6c0093 commit 759804d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/link-check.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
on: [pull_request]
4+
name: Check links for modified files
5+
jobs:
6+
markdown-link-check:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: gaurav-nelson/github-action-markdown-link-check@v1
11+
with:
12+
use-quiet-mode: 'yes'
13+
use-verbose-mode: 'yes'
14+
check-modified-files-only: 'yes'

0 commit comments

Comments
 (0)