1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 09:46:23 +00:00
Files
geek-cookbook/.github/workflows/markdownlint.yml
2023-02-10 04:34:50 +13:00

19 lines
467 B
YAML

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