ci: check internal links in mdbook after build #3
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: build-web | |
on: | |
pull_request: | |
paths: | |
- "web/book/**" | |
- ".github/workflows/check-links.yaml" | |
workflow_call: | |
env: | |
RUSTFLAGS: "-C debuginfo=0" | |
concurrency: | |
# See notes in `pull-request.yaml` | |
group: ${{ github.workflow }}-${{ github.ref }}-check-links | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Website requires hugo | |
- name: Setup hugo | |
uses: peaceiris/[email protected] | |
- uses: baptiste0928/cargo-install@v2 | |
with: | |
crate: mdbook | |
# the link checker | |
- uses: baptiste0928/cargo-install@v2 | |
with: | |
crate: hyperlink | |
- name: Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: 0.8.1 | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- uses: arduino/setup-task@v1 | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: Build the mdbook | |
run: mdbook build web/book/ | |
- name: Check links | |
run: hyperlink web/book/book/ |