Skip to content

Bump vite from 7.3.1 to 7.3.2 #27

Bump vite from 7.3.1 to 7.3.2

Bump vite from 7.3.1 to 7.3.2 #27

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['**']
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm lint
- name: Run type checker
run: pnpm typecheck
- name: Run tests
run: pnpm test run
- name: Build package
run: pnpm build
- name: Build demo
run: pnpm build:demo