Skip to content

chore(deps): bump the npm_and_yarn group in /website with 2 updates #26

chore(deps): bump the npm_and_yarn group in /website with 2 updates

chore(deps): bump the npm_and_yarn group in /website with 2 updates #26

name: Test Build Website
on:
pull_request:
branches:
- main
workflow_dispatch:
# 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
jobs:
build:
name: Test Build Docusaurus
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache-dependency-path: website/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: website
- name: Build website
run: npm run build
working-directory: website