mirror of
https://gitea.com/gitea/awesome-gitea.git
synced 2024-11-01 03:21:48 +01:00
08931734e0
Reviewed-on: https://gitea.com/gitea/awesome-gitea/pulls/114 Reviewed-by: silverwind <silverwind@noreply.gitea.io>
15 lines
No EOL
281 B
YAML
15 lines
No EOL
281 B
YAML
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' |