Files
noodl-docs/.github/workflows/test-build.yml
2023-09-20 10:08:11 +02:00

26 lines
533 B
YAML

# This GitHub Action workflow is made to make sure that we are able to build the documentation site.
# The build will fail if links etc. are incorrectly linked.
name: Test build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node env 🏗
uses: actions/setup-node@v2
with:
node-version: 16
- name: Install dependencies 🏗
run: npm install
- name: Build noodl
run: npm run build