Skip to content

Commit

Permalink
feat: add markdown link linter (#43)
Browse files Browse the repository at this point in the history
* feat: add .md link linter

* fix: remove typo

* fix: set base branch
  • Loading branch information
waymobetta authored Oct 20, 2023
1 parent ad7f1a0 commit e0a7570
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Markdown

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

# Checks the status of hyperlinks in .md files
- name: Check links
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
check-modified-files-only: 'yes'
base-branch: 'main'

0 comments on commit e0a7570

Please sign in to comment.