dev.luanti.org/.github/workflows/build.yml
Mark Wiemer 8b5abbb581
Some checks are pending
Build with Hugo / build (push) Waiting to run
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
Improve DX, add failing a11y tests (#142)
* Add a11y test (failing)

* Test on local build, document scripts, sort package.json

* Update dev guide

* Use local hugo to build site

* Fixup CI pipeline

* Document local vs global Hugo, role of Node

* Use hugo-bin instead of hugo-extended

* Update readme

* Revert "Update readme"

This reverts commit f368bcbb9c.

* Revert "Use hugo-bin instead of hugo-extended"

This reverts commit 618d49d3ca.
2025-01-20 12:40:05 -05:00

16 lines
329 B
YAML

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 depdencies
run: npm ci
- name: Build site to check for errors
run: npm run build:ci