Skip to content

ci: add lychee link checking [beta] #10

ci: add lychee link checking [beta]

ci: add lychee link checking [beta] #10

Workflow file for this run

name: Check Links
on:
pull_request:
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Link Checker
uses: lycheeverse/lychee-action@v1.5.1
with:
args: --config ./.github/config/lychee.toml README.md
format: markdown
output: ./lychee/out.md
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}