Clin 3527 test for broken link #2
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: 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 |