Run markdownlint on drone, fix lint issue (#25040)

It currently does not run on 1.19 branch, resulting in lint error having
landed in https://github.com/go-gitea/gitea/pull/25016.

(cherry picked from commit b83e4f295d91b4d480d925b411a93e9e151790d1)
This commit is contained in:
silverwind 2023-06-01 17:34:40 +02:00 committed by Earl Warren
parent e030d90f07
commit c5245fabe4
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 7 additions and 1 deletions

View file

@ -963,6 +963,12 @@ trigger:
- docs/**
steps:
- name: lint-docs
image: node:18
commands:
- make deps-frontend
- make lint-frontend
- name: build-docs
image: golang:1.20
commands:

View file

@ -90,4 +90,4 @@ install.packages("{package_name}")
```shell
install.packages("testpackage")
```
```