Skip to content

Commit

Permalink
github: lint markdown without enforcement
Browse files Browse the repository at this point in the history
Signed-off-by: Philip Molloy <philip@philipmolloy.com>
  • Loading branch information
pamolloy committed Apr 4, 2024
1 parent fcac8bc commit 3349af7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Markdown Lint Action
on: push

jobs:
build:
name: Markdown Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install markdown lint
run: sudo gem install mdl

- name: Lint markdown
run: mdl $(find . -name *.md)

0 comments on commit 3349af7

Please sign in to comment.