Add link checker #6
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: Check Links | |
on: | |
pull_request: {} | |
jobs: | |
build-and-test-links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
# If your Hugo theme is a submodule, this ensures it gets pulled | |
submodules: true | |
- name: Read hugo version | |
id: hugo-version | |
run: | | |
HUGO_VERSION=$(grep 'HUGO_VERSION' netlify.toml | sed -E 's/.*=\s*"([^"]+)".*/\1/') | |
echo ${HUGO_VERSION} | |
echo "HUGO_VERSION=${HUGO_VERSION}" >> "${GITHUB_OUTPUT}" | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v3 | |
with: | |
hugo-version: '${{ steps.hugo-version.outputs.HUGO_VERSION }}' | |
# If you have a custom install step for themes beyond submodules, do it here | |
# For example, if your theme is not a submodule but you need to download it: | |
# - name: Install Theme | |
# run: | | |
# git clone https://github.com/username/your-hugo-theme.git themes/your-hugo-theme | |
- name: Build Hugo Site | |
run: hugo --minify | |
# Run the link checker on the generated site | |
- name: Check Links | |
uses: lycheeverse/lychee-action@v2 |