Skip to content

Clin 3527 test for broken link #2

Clin 3527 test for broken link

Clin 3527 test for broken link #2

Workflow file for this run

name: Linkspector
on: [ pull_request ]
jobs:
check-links:
name: runner / linkspector
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Step to set up Node.js environment
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 'latest'
# Step to install Docsify CLI
- name: Install Docsify CLI
run: npm install -g docsify-cli@latest
# Step to start Docsify server
- name: Start Docsify server
run: docsify serve ./docs &
# Step to run Linkspector
- name: Run linkspector
uses: umbrelladocs/action-linkspector@v1
with:
reporter: github-pr-review
config_file: linkspector_config.yaml
fail_on_error: false