feat: preliminary autogenerated markdown for MNW drivers in MAME #7
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 linter runner | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- "**/*.md" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- "**/*.md" | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: mdl runner | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 12.x | |
- name: Run Markdownlint | |
run: | | |
npm i -g markdownlint-cli | |
markdownlint . -c md_config.json |