Skip to content

Commit 40e4b1e

Browse files
committed
ci(action): deploy check on Markdown links
Signed-off-by: Frederic Pillon <[email protected]>
1 parent a6c72d9 commit 40e4b1e

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Check Markdown Links
2+
# runs every monday at 9 am
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- '**.md'
9+
pull_request:
10+
paths:
11+
- '**.md'
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
jobs:
15+
linkinator:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v3
19+
- uses: JustinBeckwith/linkinator-action@v1
20+
with:
21+
paths: '*.md ./CI/**/*.md, ./variants/**/*.md, ./libraries/**/*.md'
22+
verbosity: 'INFO'
23+
skip: 'www.st.com'

0 commit comments

Comments
 (0)