You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
378 B
YAML
23 lines
378 B
YAML
name: Markdown linter
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
|
|
linter:
|
|
name: markdown linter
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Markdown Linting Action
|
|
uses: avto-dev/markdown-lint@v1.3.1
|
|
with:
|
|
args: 'find . -name "*.md"'
|