Skip to content

Bump vite from 5.4.2 to 5.4.6 #1179

Bump vite from 5.4.2 to 5.4.6

Bump vite from 5.4.2 to 5.4.6 #1179

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/* # Always use latest LTS
cache: npm
- name: npm ci
run: npm ci
- name: npm run lint
run: npm run lint
env:
NODE_ENV: production
- name: npm run build
run: npm run build
- name: Install Playwright browsers
run: npx playwright install --with-deps
- name: npm run test
run: npm run test
- name: Upload Playright report
uses: actions/upload-artifact@v4
if: always() # Even on failure
with:
name: playwright-report
path: playwright-report/
retention-days: 30