Skip to content

Fix links and add lychee #2

Fix links and add lychee

Fix links and add lychee #2

name: External link validation
on: push
jobs:
linkvalidator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: lychee Link Checker
id: lychee
uses: lycheeverse/[email protected]
with:
args: --accept=200,403,429 -s "https" "**/*.html" "**/*.md" "**/*.txt" "**/*.json" --exclude "https://github.com/\[your*" --exclude "https://localhost:9200" --exclude-mail
- name: Fail if there were link errors
continue-on-error: true # to be removed after fixes from platform are applied
run: exit ${{ steps.lychee.outputs.exit_code }}