Skip to content

Commit 7d1bacf

Browse files
committed
Chore: Check markdown links on documentation
1 parent 2a7f739 commit 7d1bacf

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Check Markdown links
2+
3+
on:
4+
pull_request: ~
5+
workflow_dispatch: ~
6+
workflow_call: ~
7+
8+
jobs:
9+
markdown-link-check:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
- uses: tcort/github-action-markdown-link-check@v1
14+
with:
15+
folder-path: 'docs'

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
DATABASE_URL: "pgsql://postgres:postgres@127.0.0.1/sylius_stack?charset=utf8&serverVersion=${{ matrix.postgres }}"
2929
steps:
3030
- name: "Checkout"
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v6
3232

3333
- name: "Setup PHP"
3434
uses: shivammathur/setup-php@v2

.github/workflows/split_packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- { name: 'TwigHooks' }
2929
- { name: 'UiTranslations' }
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434

0 commit comments

Comments
 (0)