Skip to content

Commit

Permalink
Added makrdown lint github action
Browse files Browse the repository at this point in the history
  • Loading branch information
botond-szabo committed Aug 20, 2024
1 parent e45ff00 commit cfc0010
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Empty file removed .github/.gitkeep
Empty file.
22 changes: 22 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Markdown Lint

on:
push:
branches:
- main
pull_request:
branches:
- main

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

- name: Install Markdown lint
run: npm install markdownlint-cli

- name: Run Markdown lint
run: markdownlint '**/*.md'

0 comments on commit cfc0010

Please sign in to comment.