Skip to content

Commit 9c78fb4

Browse files
committed
Fix: Workflow for Broken links
Signed-off-by: Varad Gupta <114755221+vr-varad@users.noreply.github.com>
1 parent 33bfab8 commit 9c78fb4

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Broken Link Checker
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
link-check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout code
12+
uses: actions/checkout@master
13+
14+
- name: Broken Link Check
15+
uses: technote-space/broken-link-checker-action@v2
16+
with:
17+
target: |
18+
./src/**/*.md
19+
./src/**/*.html

0 commit comments

Comments
 (0)