Skip to content

Commit

Permalink
Check internal links
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-seqera committed Jul 24, 2024
1 parent d1ed7d0 commit acc7598
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check-internal-links.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "Internal link checking"

on: [pull_request]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
check-internal-links:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out repo
uses: actions/checkout@v2
# Node is required for npm
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Pull & update submodules recursively
run: |
git submodule update --init --recursive
# Fail the build in PRs, but not for Netlify previews or production builds
- name: Replace credentials
run: |
sed -Ei 's/onBroken([A-Za-z]+): "warn"/onBroken\1: "throw"/g' docusaurus.config.js
# Install and build Docusaurus website
- name: Build Docusaurus website
run: |
npm install
npm run build

0 comments on commit acc7598

Please sign in to comment.