fix broken link #65
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Markdown Links for PRs | |
# This tests links using a *local* copy of the site *without* building it | |
# That means links need to be accurate before Jekyll builds and the page is deployed | |
on: | |
pull_request | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Link Checker | |
uses: lycheeverse/lychee-action@v1.8.0 | |
with: | |
fail: true | |
args: --verbose --no-progress './**/*.md' './**/*.html' --base . |