ci: add markdown linting workflow (#1)
Co-authored-by: Hugh Hackman <hugh@privilegedescalation.com>
This commit was merged in pull request #1.
This commit is contained in:
committed by
GitHub
parent
6031067d46
commit
9a5af720e8
@@ -0,0 +1,19 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: local-ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Lint Markdown
|
||||
uses: DavidAnson/markdownlint-cli2-action@v16
|
||||
with:
|
||||
globs: '**/*.md'
|
||||
Reference in New Issue
Block a user