Skip to content

chore(deps): update devdependency vitest to v2.1.3 #849

chore(deps): update devdependency vitest to v2.1.3

chore(deps): update devdependency vitest to v2.1.3 #849

Workflow file for this run

name: ci
on:
push:
branches:
- main
- renovate/*
- renovate/*
pull_request:
branches:
- main
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- name: πŸ“¦ Install dependencies
run: pnpm install --frozen-lockfile
- name: 🚧 Set up project
run: pnpm dev:prepare
- name: πŸ’ͺ Test types
run: pnpm test:types
- name: πŸ›  Build project
run: pnpm prepack
- name: πŸ› Build playground
run: pnpm dev:build
- name: πŸ‘€ Lint project
run: pnpm lint
- name: πŸ§ͺ Test project
run: pnpm test