Lint Markdown files after workflow_dispatch by mhucka #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Summary: GitHub Actions workflow to run a Markdown linter on .md files. | |
# | |
# Copyright 2024 Michael Hucka. | |
# License: MIT License – see file "LICENSE" in the project website. | |
# Website: https://github.com/mhucka/template | |
name: Markdown file linter | |
run-name: Lint Markdown files after ${{github.event_name}} by ${{github.actor}} | |
on: | |
push: | |
paths: | |
- '*.md' | |
pull_request: | |
paths: | |
- '*.md' | |
workflow_dispatch: | |
paths: | |
- '*.md' | |
jobs: | |
lint: | |
name: Run Markdown linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out copy of git repository. | |
uses: actions/checkout@v4 | |
- name: Run Markdownlint on .md files. | |
uses: DavidAnson/markdownlint-cli2-action@v15 | |
with: | |
config: .markdownlint.json | |
globs: | | |
*.md |