|
name: Lint
|
|
|
|
on:
|
|
pull_request
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Install Markdownlint-cli
|
|
run: |
|
|
npm install -g markdownlint-cli
|
|
|
|
- name: Lint
|
|
run: |
|
|
bash ./wiki-tools/lint.sh
|