Skip to content

Bump vitest from 0.33.0 to 0.34.3 #19

Bump vitest from 0.33.0 to 0.34.3

Bump vitest from 0.33.0 to 0.34.3 #19

Workflow file for this run

name: Test change
on:
push:
paths:
- '.github/workflows/**'
- 'packages/**'
- '!packages/playground/**'
- 'package-lock.json'
- 'package.json'
- '.eslintrc.base.cjs'
- 'tsconfig.json'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
workspace:
- client
- server
- shared
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'v18'
- name: Install dependencies
run: npm ci --workspace shared --workspace ${{ matrix.workspace }}
- name: Run tests
run: npm --workspace ${{ matrix.workspace }} test