mirror of https://github.com/vacp2p/rfc-index.git
23 lines
417 B
YAML
23 lines
417 B
YAML
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'
|