mirror of
https://github.com/emmabostian/developer-portfolios.git
synced 2025-04-22 06:08:00 +00:00
21 lines
384 B
YAML
21 lines
384 B
YAML
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
name: Check order of markdown list items
|
|
jobs:
|
|
listChecker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Lint markdown lists
|
|
uses: ClydeDz/markdown-list-linter@main
|
|
with:
|
|
file: ./README.md
|
|
fail-on-error: true
|