Add workflow file to check markdown list order

This commit is contained in:
Clyde D'Souza 2023-07-12 22:15:40 +12:00
parent 527a6c49c6
commit 126bf287b9

21
.github/workflows/order-checker.yml vendored Normal file
View File

@ -0,0 +1,21 @@
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
name: Check order of markdown list items
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint markdown lists
uses: ClydeDz/markdown-list-linter@main
with:
file: markdown-lists/valid_file.md
fail-on-error: true