Skip to content

Links

Links #208

Workflow file for this run

name: Links
on:
repository_dispatch:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
link-checker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lychee cache
uses: actions/cache@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v1.6.1
with:
args: --verbose --exclude "https://twitter.com/.*" --exclude "http://localhost.*" --no-progress "./src/**/*.md" "./src/**/*.astro"
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}