mirror of
https://github.com/ONLYOFFICE/build_tools.git
synced 2026-04-07 14:06:31 +08:00
18 lines
294 B
YAML
18 lines
294 B
YAML
name: Markdown check
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
paths:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
markdownlint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: DavidAnson/markdownlint-cli2-action@v9
|
|
with:
|
|
globs: '**.md'
|
|
separator: ','
|