Skip to content

Ignore reddit from links checker #9

Ignore reddit from links checker

Ignore reddit from links checker #9

Workflow file for this run

name: Links checker
on:
push:
branches: ["main"]
pull_request:
jobs:
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Restore lychee cache
uses: actions/cache@v3
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-
- name: Link Checker
uses: lycheeverse/[email protected]
with:
fail: true
args: "--cache --max-cache-age 1d ."
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}