Skip to content

add test framework & cleanup #8

add test framework & cleanup

add test framework & cleanup #8

Workflow file for this run

name: Build frontend
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
cache-dependency-path: "frontend"
- name: Install with npm
run: npm ci
- name: Build with npm
run: npm run build