Skip to content

Dtt 488 configure and deploy docusaurus #1

Dtt 488 configure and deploy docusaurus

Dtt 488 configure and deploy docusaurus #1

Workflow file for this run

name: Test deployment
# This just runs the build step, without deploying, so you know that your PR will at least build
# Will it look good ? You need to deploy to know...
# Review gh actions docs if you want to further define triggers, paths, etc
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on
on:
pull_request:
branches:
- main
jobs:
test-build:
name: Test building the documentation static web site with docusaurus
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install dependencies
run: npm ci
- name: list environment variables
run: |
env && exit 1
- name: Test build website
run: npm run build