Skip to content

Bump vite from 7.2.4 to 7.2.6 #164

Bump vite from 7.2.4 to 7.2.6

Bump vite from 7.2.4 to 7.2.6 #164

Workflow file for this run

name: Node.js CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: npm ci
- run: npm run build
build-summary:
runs-on: ubuntu-latest
needs: [build]
if: always()
steps:
- name: Check build results
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
run: echo "One or more build jobs failed or were cancelled."