mirror of
https://github.com/lunchcat/sif.git
synced 2025-12-24 03:57:41 -08:00
19 lines
379 B
YAML
19 lines
379 B
YAML
name: Markdown Lint
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**/*.md"
|
|
|
|
jobs:
|
|
markdownlint:
|
|
name: runner / markdownlint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: markdownlint
|
|
uses: reviewdog/action-markdownlint@v0.10.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|