Skip to content

Commit

Permalink
Add CI to lint markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Oct 21, 2024
1 parent 84d39f8 commit 2b8ced9
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Lint
on:
push:
branches:
- main
pull_request:

jobs:
run:
name: Lint Markdown files
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v4

- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v17
continue-on-error: true
with:
globs: '**/*.md'

0 comments on commit 2b8ced9

Please sign in to comment.