Skip to content

Update

Update #1

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
- name: Install markdownlint-cli
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint **/*.md || true