Skip to content

build(deps): npm update #555

build(deps): npm update

build(deps): npm update #555

Workflow file for this run

name: Frontend build
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version-file: ./frontend/.nvmrc
cache: "npm"
cache-dependency-path: ./frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build