18 lines
397 B
YAML
18 lines
397 B
YAML
|
# License: LGPL-3.0-or-later
|
||
|
name: Markdown lint
|
||
|
on:
|
||
|
push:
|
||
|
paths: ["**.md"]
|
||
|
pull_request:
|
||
|
paths: ["**.md"]
|
||
|
jobs:
|
||
|
markdownlint:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup Node.js environment
|
||
|
uses: actions/setup-node@v1.4.2
|
||
|
with:
|
||
|
node-version: 14.6.0
|
||
|
- name: lint Markdown
|
||
|
run: yarn markdownlint
|