apisix/.github/workflows/doc-lint.yml
dependabot[bot] c9d3cba845
chore(deps): bump actions/checkout from 2 to 2.3.4 (#4225)
Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-05-12 19:00:14 +08:00

21 lines
415 B
YAML

name: Doc Lint
on:
pull_request:
branches: [master]
paths:
- '**/*.md'
jobs:
markdownlint:
name: 🍇 Markdown
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: 🚀 Use Node.js
uses: actions/setup-node@v2.1.5
with:
node-version: '12.x'
- run: npm install -g markdownlint-cli@0.25.0
- run: markdownlint '**/*.md'