Add .gitea/workflows/lint.yml
Some checks failed
continuous-integration/drone/push Build is passing
lint / lint (push) Failing after 59s

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
View 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'