mirror of
https://github.com/vacp2p/rfc-index.git
synced 2026-01-07 23:04:09 -05:00
Add Markdown Linting (#24)
This commit is contained in:
22
.github/workflows/markdown-lint.yml
vendored
Normal file
22
.github/workflows/markdown-lint.yml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: markdown-linting
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
pull_request:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.base.ref }}
|
||||
- name: Markdown Linter
|
||||
uses: DavidAnson/markdownlint-cli2-action@v15
|
||||
with:
|
||||
globs: '/*.md'
|
||||
Reference in New Issue
Block a user