Skip to content

Commit

Permalink
CI: check Markdownlint passes
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Jan 23, 2025
1 parent f3b76bd commit 93c7ff4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/markdownlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Markdown Lint

on:
push:
pull_request:

jobs:
readme-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install markdownlint
run: npm install -g markdownlint-cli

- name: Lint README
run: markdownlint README.md

0 comments on commit 93c7ff4

Please sign in to comment.