Merge pull request #558 from wesinator/business_impact_disc #2543
This file contains hidden or 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 Linter | |
| on: [push, pull_request] | |
| jobs: | |
| mdlinter: | |
| name: Lint markdown file | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Lint Markdown files | |
| uses: avto-dev/markdown-lint@v1 | |
| env: | |
| MARKDOWN_CONFIG_FILE: ".markdownlint.json" | |
| with: | |
| args: '**/*.md' |