Add Markdown Linting (#24)

This commit is contained in:
Jimmy Debe 2024-03-08 10:41:51 -05:00 committed by GitHub
parent f7733cb7df
commit 92d8cf339b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 0 deletions

22
.github/workflows/markdown-lint.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: markdown-linting
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.ref }}
- name: Markdown Linter
uses: DavidAnson/markdownlint-cli2-action@v15
with:
globs: '/*.md'