Skip to content

orient v1.5.0 — fix markdownlint trailing newlines #5

orient v1.5.0 — fix markdownlint trailing newlines

orient v1.5.0 — fix markdownlint trailing newlines #5

Workflow file for this run

name: orient-checks
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
markdownlint:
name: markdownlint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DavidAnson/markdownlint-cli2-action@v17
with:
globs: '**/*.md'
link-check-internal:
name: link-check (internal, must pass)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@v2
with:
args: --offline --no-progress --include-fragments '**/*.md'
fail: true
link-check-external:
name: link-check (external, warn-only)
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: lycheeverse/lychee-action@v2
with:
args: --no-progress --max-redirects 10 --exclude-mail '**/*.md'
fail: false