Skip to content

Dependency updates only. Nothing interesting. #26

Dependency updates only. Nothing interesting.

Dependency updates only. Nothing interesting. #26

Workflow file for this run

name: React Build Test
on:
push:
branches: [ noetic ]
paths:
- "website/**"
pull_request:
branches: [ noetic ]
paths:
- "website/**"
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
required: false
description: 'Manually run React tests'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: latest
cache: 'npm'
cache-dependency-path: ./website/package-lock.json
- run: npm ci
working-directory: website
- run: npm run build --if-present
working-directory: website