Skip to content

Bump vite from 6.3.5 to 7.1.3 in the vite group #172

Bump vite from 6.3.5 to 7.1.3 in the vite group

Bump vite from 6.3.5 to 7.1.3 in the vite group #172

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
CI:
name: ${{ matrix.install }} on ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [20.19.0, 22, 24]
install: ['npm install', 'yarn install', 'pnpm install']
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node }}
- name: Install pnpm
if: ${{ matrix.install == 'pnpm install' }}
uses: pnpm/action-setup@v4
with:
version: 8
- name: Install dependencies using ${{ matrix.install }}
run: ${{ matrix.install }}