Skip to content

Commit

Permalink
feat: add markdown link checker github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybxyz committed Oct 6, 2021
1 parent 4844b2f commit 9d729d0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check Markdown links

on:
pull_request:
push:
branches:
- master
- develop
schedule:
- cron: '* */24 * * *'

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@1.0.13
with:
folder-path: "."

0 comments on commit 9d729d0

Please sign in to comment.