Fixing small errors on data-backup.qmd #136
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: Check Internal Links | |
on: | |
pull_request: | |
paths: | |
- 'topics/**/*.qmd' | |
- 'pathway/**/*.qmd' | |
- '*.qmd' | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- name: Render Quarto website | |
uses: quarto-dev/quarto-actions/render@v2 | |
- name: Install hyperlink | |
run: npm install -g hyperlink | |
- name: Check internal links | |
run: hyperlink ./_site --internal |