1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 01:36:23 +00:00
Files
geek-cookbook/.github/workflows/markdownlint.yml
2021-10-20 15:25:05 +13:00

19 lines
482 B
YAML

name: 'Lint Markdown'
on:
pull_request:
types: [opened, edited, synchronize]
jobs:
lint-markdown:
name: Lint changelog file
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Lint markdown files
uses: docker://avtodev/markdown-lint:v1 # fastest way
with:
config: '/.markdownlint.yml'
args: '/**/*.md'
ignore: '_snippets' # multiple files must be separated with single space