Skip to content

Commit

Permalink
chore: add markdown lint checks
Browse files Browse the repository at this point in the history
  • Loading branch information
legendecas committed Dec 8, 2021
1 parent 09d3f68 commit 938ffb7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/markdown-lint.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"retryOn429": true
}
19 changes: 19 additions & 0 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Markdown Linter

on:
push:
branches:
- main
pull_request:

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
# checks all markdown including all subfolders
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
config-file: '.github/workflows/markdown-lint.config.json'

0 comments on commit 938ffb7

Please sign in to comment.