2023-01-06 17:10:33 -08:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
2023-03-11 06:15:19 -08:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
2023-01-06 17:10:33 -08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out repo
|
2023-07-31 07:33:00 -07:00
|
|
|
uses: actions/checkout@v3
|
2023-01-12 13:56:47 -08:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2023-01-06 17:10:33 -08:00
|
|
|
|
|
|
|
- name: Install Markdownlint-cli
|
|
|
|
run: |
|
|
|
|
npm install -g markdownlint-cli
|
|
|
|
|
|
|
|
- name: Lint
|
|
|
|
run: |
|
2023-01-12 13:56:47 -08:00
|
|
|
bash ./wiki-tools/lint.sh
|