Skip to content

⬆️ Bump vite from 7.1.7 to 7.1.9 in /frontend #1371

⬆️ Bump vite from 7.1.7 to 7.1.9 in /frontend

⬆️ Bump vite from 7.1.7 to 7.1.9 in /frontend #1371

Workflow file for this run

# This workflow will build the frontend with node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build frontend
on:
push:
branches: [ main ]
paths:
- '.github/workflows/**'
- 'frontend/**'
pull_request:
branches: [ main ]
paths:
- '.github/workflows/**'
- 'frontend/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install pnpm
uses: pnpm/[email protected] # see https://github.com/pnpm/action-setup
with:
package_json_file: frontend/package.json
- name: Set up Node.js
uses: actions/[email protected] # see https://github.com/actions/setup-node
with:
node-version: '22.x'
cache-dependency-path: "frontend"
- name: Check dependency constraints
working-directory: frontend
run: pnpm install --resolution-only --no-frozen-lockfile # https://github.com/pnpm/pnpm/issues/7087
- name: Install dependencies
working-directory: frontend
run: pnpm install
- name: Lint
working-directory: frontend
run: pnpm run lint
- name: Test
working-directory: frontend
run: pnpm run test
- name: Build
working-directory: frontend
run: pnpm run build