Skip to content

Update broken-links.yml #1666

Update broken-links.yml

Update broken-links.yml #1666

Workflow file for this run

'on':
push:
branches:
- "**"
schedule:
- cron: 0 14 * * *
name: broken links?
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Link Checker
id: lc
uses: lycheeverse/lychee-action@v2
with:
args: --insecure -- --debug --base . --verbose --no-progress './**/*.md' './**/*.html' --accept 200,204,206 --user-agent 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36'
- name: Fail?
run: 'exit ${{ steps.lc.outputs.exit_code }}'