mirror of
https://github.com/minetest/dev.luanti.org.git
synced 2025-01-22 05:08:58 +00:00
8b5abbb581
* 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 commitf368bcbb9c
. * Revert "Use hugo-bin instead of hugo-extended" This reverts commit618d49d3ca
.
16 lines
329 B
YAML
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 |