mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-05-02 06:46:29 -04:00
31 lines
593 B
YAML
31 lines
593 B
YAML
name: Documentation
|
|
|
|
on:
|
|
push:
|
|
branches: [main, master]
|
|
paths:
|
|
- '**.md'
|
|
- '.github/workflows/docs.yml'
|
|
pull_request:
|
|
branches: [main, master]
|
|
paths:
|
|
- '**.md'
|
|
- '.github/workflows/docs.yml'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
markdown-lint:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Lint markdown files
|
|
uses: DavidAnson/markdownlint-cli2-action@v18
|
|
with:
|
|
globs: |
|
|
**/*.md
|
|
!**/node_modules/**
|