Skip to content

Fix markdownlint.yml for checking all markdown files #1

Fix markdownlint.yml for checking all markdown files

Fix markdownlint.yml for checking all markdown files #1

Workflow file for this run

# Check formatting of markdown files
name: Markdown Lint
on:
push:
branches: [ "master", "development" ]
pull_request:
branches: [ "master", "development" ]
workflow_dispatch:
jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run MarkdownLint
uses: DavidAnson/markdownlint-cli2-action@v18.0.0
with:
fix: true
globs: '**/*.md'