Skip to content

Updated

Updated #3

Workflow file for this run

name: Markdown checks
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check links with lychee
uses: lycheeverse/lychee-action@v1
with:
args: --verbose --no-progress '**/*.md'
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint '**/*.md' --ignore node_modules