Skip to content

good cache in frontend!! & generally cleaned up #17

good cache in frontend!! & generally cleaned up

good cache in frontend!! & generally cleaned up #17

Workflow file for this run

name: Build frontend
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-frontend:
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