mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 09:50:40 +08:00
Co-authored-by: wlwxj <d1ve_wh4le@outlook.com> Co-authored-by: Rbqwow <55343783+Rbqwow@users.noreply.github.com> Co-authored-by: Constrat <56174894+Constrat@users.noreply.github.com> Co-authored-by: HX3N <scarlet7518@gmail.com> Co-authored-by: Wallsman <63186641+wallsman@users.noreply.github.com> Co-authored-by: Loong <wangl.cc@outlook.com> Co-authored-by: 神代綺凛 <i@loli.best> Co-authored-by: SherkeyXD <57581480+SherkeyXD@users.noreply.github.com>
50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
name: Lint Markdown files
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**/*.md"
|
|
- ".github/workflows/lint-markdown.yml"
|
|
pull_request:
|
|
paths:
|
|
- "**/*.md"
|
|
- ".github/workflows/lint-markdown.yml"
|
|
schedule:
|
|
- cron: "44 7 * * 2"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint Markdown
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
show-progress: false
|
|
|
|
- name: Lint Markdown
|
|
uses: DavidAnson/markdownlint-cli2-action@v16
|
|
with:
|
|
config: docs/.markdownlint.yaml
|
|
globs: |
|
|
README.md
|
|
docs/**/*.md
|
|
|
|
# check-links:
|
|
# name: Check Dead Links
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - name: Check out code
|
|
# uses: actions/checkout@v4
|
|
# with:
|
|
# show-progress: false
|
|
#
|
|
# - name: Check Dead Link
|
|
# uses: umbrelladocs/action-linkspector@v1
|
|
# with:
|
|
# # Use github-pr-review when triggered by a pull request; otherwise, use github-check
|
|
# reporter: ${{ github.event_name == 'pull_request' && 'github-pr-review' || 'github-check' }}
|
|
# filter_mode: nofilter
|
|
# fail_on_error: true
|