Skip to content

Bump vite from 6.2.3 to 6.4.1 #53

Bump vite from 6.2.3 to 6.4.1

Bump vite from 6.2.3 to 6.4.1 #53

Workflow file for this run

name: Build & Release
on: [push]
jobs:
test:
strategy:
matrix:
node: ["22.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Run Build
run: npm run build
- name: Install playwright webkit
run: npx playwright install-deps webkit
- name: Run tests
run: npx playwright install && npm run test