Skip to content

Create overview.mmd #56

Create overview.mmd

Create overview.mmd #56

Workflow file for this run

name: Docs CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm i -g markdownlint-cli
- run: markdownlint '**/*.md' || true
linkcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@v2
with:
args: --verbose --no-progress './**/*.md'