Check links on pull request #2
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
# This workflow will check all the links in the markdown files in the repository on each PR or by manual trigger. | |
name: Check links on pull request | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Link Checker | |
# Reference: https://github.com/lycheeverse/lychee-action | |
id: lychee | |
uses: lycheeverse/lychee-action@v1 | |
with: | |
fail: true |