2020-10-25 04:56:04 +00:00
|
|
|
# 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
|
2020-11-18 17:12:10 +00:00
|
|
|
uses: actions/setup-node@v1.4.4
|
2020-10-25 04:56:04 +00:00
|
|
|
with:
|
|
|
|
node-version: 14.6.0
|
|
|
|
- name: lint Markdown
|
|
|
|
run: yarn markdownlint
|