You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
719 B
31 lines
719 B
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Markdown Lint
|
|
|
|
on:
|
|
push:
|
|
# Explicitly specifying this results in tags being ignored, which is the goal.
|
|
branches: ["**"]
|
|
paths:
|
|
- "**.md"
|
|
- .github/workflows/markdown-lint.yml
|
|
- "!src/**"
|
|
pull_request:
|
|
paths:
|
|
- "**.md"
|
|
- .github/workflows/markdown-lint.yml
|
|
- "!src/**"
|
|
|
|
jobs:
|
|
markdownlint:
|
|
name: Markdown Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
- name: Lint Markdown Files
|
|
uses: DavidAnson/markdownlint-cli2-action@v11
|
|
with:
|
|
globs: |
|
|
**.md
|
|
!src/**
|