Skip to content

Commit

Permalink
Add CI workflow to check for broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
GeckoEidechse committed Sep 19, 2024
1 parent bc25c01 commit 3a15b62
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/.markdownlinkcheck.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"ignorePatterns": [
]
}
14 changes: 14 additions & 0 deletions .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Linkcheck
on: [push, pull_request]

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: md-linkcheck
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
config-file: '.github/.markdownlinkcheck.json'

0 comments on commit 3a15b62

Please sign in to comment.