Organize remaining pages, finalize spell-checker (#200) #316
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: Build with Hugo | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build site to check for errors | |
run: npm run build:ci | |
- name: check that links are all valid | |
uses: JustinBeckwith/linkinator-action@v1 | |
with: | |
paths: "*.html" | |
serverRoot: "./public/" |