mirror of
https://github.com/vacp2p/rfc-index.git
synced 2026-01-08 23:28:15 -05:00
Remove website sync workflow and fix markdown linting. --------- Co-authored-by: kaiserd <1684595+kaiserd@users.noreply.github.com>
24 lines
414 B
YAML
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'
|