Skip to content

Lots

Lots #6

Workflow file for this run

name: Frontend
on:
push:
paths:
- 'frontend/**/*'
branches:
- main
pull_request:
paths:
- 'frontend/**/*'
branches:
- main
jobs:
frontend-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
- run: npm ci
working-directory: ./frontend
- run: npm run build
working-directory: ./frontend