Skip to content

ci: try to add a markdown link check #985

ci: try to add a markdown link check

ci: try to add a markdown link check #985

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
jobs:
linter:
name: Run Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Markdown lint
uses: nosborn/[email protected]
with:
files: "./**/*.md"
config_file: .markdownlint.yaml
- name: Check typos
uses: crate-ci/typos@master
with:
config: .typo.toml
- name: Link check
uses: umbrelladocs/action-linkspector@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
fail_on_error: true