Update .gitea/workflows/lint
Some checks failed
continuous-integration/drone/push Build is passing
Build / build (push) Failing after 2s

This commit is contained in:
Sthope
2023-08-13 03:23:42 +02:00
parent 1a625140e2
commit c7b9634c7f

15
.gitea/workflows/lint 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'