Skip to content

Commit

Permalink
Add Markdown Linting (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimstir authored Mar 8, 2024
1 parent f7733cb commit 92d8cf3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 92d8cf3

Please sign in to comment.