Skip to content

docs: add CI action to check links #1465

docs: add CI action to check links

docs: add CI action to check links #1465

Workflow file for this run

name: Docs
on:
push:
branches:
- main
paths:
- "docs/**"
pull_request:
paths:
- "docs/**"
workflow_dispatch:
jobs:
linkcheck:
name: Check links
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup prerequisites
uses: ./.github/actions/setup-prerequisites
- name: Install node dependencies
working-directory: docs
run: pnpm install --frozen-lockfile
- name: Build
working-directory: docs
run: pnpm build
- name: Start
working-directory: docs
run: pnpm start &
# TODO: wait for server to be online?
- name: Check links
uses: filiph/linkcheck
with:
arguments: localhost:3000