Skip to content

chore(deps-dev): bump vite from 8.0.12 to 8.0.16 #178

chore(deps-dev): bump vite from 8.0.12 to 8.0.16

chore(deps-dev): bump vite from 8.0.12 to 8.0.16 #178

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x, 24.x]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: pnpm install, build and test
run: |
pnpm install --frozen-lockfile
pnpm build
pnpm test --run
env:
CI: true