Validate markdown files #6
Workflow file for this run
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
name: Markdown validation | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
# TODO run only on md file changes or changes to this file | |
jobs: | |
lint-changelog: | |
name: Markdown validation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint files | |
uses: avto-dev/[email protected] | |
with: | |
config: '.github/workflows/markdown-lint-config.jsonc' | |
args: '**.md' | |
# ignore: './one_file.md ./another_file.md' # multiple files must be separated with single space |