Skip to content

docs: Link checker #111

docs: Link checker

docs: Link checker #111

Workflow file for this run

name: Docs
on:
pull_request:
jobs:
spell-check:
name: Spell Check
uses: FuelLabs/github-actions/.github/workflows/mdbook-docs.yml@master
with:
docs-src-path: "docs/book/src"
spellcheck-config-path: "docs/book/.spellcheck.yml"
link-check:
name: Link Check
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- uses: gaurav-nelson/[email protected]
with:
configuration-path: ".markdown-link-check.json"
lint-docs:
runs-on: ubuntu-latest
needs: link-check
steps:
- uses: actions/checkout@v3
- uses: FuelLabs/github-actions/setups/node@master
with:
node-version: '16'
pnpm: true
- name: Install Dependencies
run: pnpm install
- name: Lint Check
run: pnpm lint:check