Skip to content

build(deps): bump web-vitals from 3.5.2 to 4.0.0 in /frontend #1338

build(deps): bump web-vitals from 3.5.2 to 4.0.0 in /frontend

build(deps): bump web-vitals from 3.5.2 to 4.0.0 in /frontend #1338

name: Frontend Generate
on:
push:
tags:
- v*
branches:
- main
paths:
- .github/workflows/**
- frontend/**
pull_request:
paths:
- .github/workflows/**
- frontend/**
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
working-directory: frontend
run: npm ci
- name: Generate
working-directory: frontend
run: npm run generate
# Ensure nothing has changed
- name: Evaluate 'git diff'
run: git diff --exit-code