Skip to content

build(deps-dev): bump vite from 4.3.8 to 5.4.20 in /tests #815

build(deps-dev): bump vite from 4.3.8 to 5.4.20 in /tests

build(deps-dev): bump vite from 4.3.8 to 5.4.20 in /tests #815

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: '24'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['18', '20', '22', '24']
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
run_install: false
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test:all