Add .gitea/workflows/lint.yml

This commit is contained in:
Sthope 2023-08-13 03:21:18 +02:00
parent 39b5162fe2
commit e943cab932

15
.gitea/workflows/lint.yml Normal file

@ -0,0 +1,15 @@
name: lint
on:
- push
- pull_request
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install markdownlint-cli
run: npm install -g markdownlint-cli
- name: lint
run: markdownlint '**/*.md'