Files
rfc-index/.github/workflows/markdown-lint.yml
Jimmy Debe f11559814d Delete Website Sync (#80)
Remove website sync workflow and fix markdown linting.

---------

Co-authored-by: kaiserd <1684595+kaiserd@users.noreply.github.com>
2024-08-16 11:30:14 -04:00

24 lines
414 B
YAML

name: markdown-linting
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Markdown Linter
uses: DavidAnson/markdownlint-cli2-action@v15
with:
configFile: .github/workflows/markdownlint.json
globs: '**/*.md'