Skip to content

chore(deps-dev): bump vite from 4.4.9 to 4.4.12 #245

chore(deps-dev): bump vite from 4.4.9 to 4.4.12

chore(deps-dev): bump vite from 4.4.9 to 4.4.12 #245

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Check quality
runs-on: ubuntu-latest
strategy:
matrix:
command: ["lint", "lint:pub", "test", "type:check"]
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.6.10
- uses: actions/setup-node@v3
with:
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
node-version-file: ".nvmrc"
- run: pnpm install --frozen-lockfile
- if: matrix.command == 'test'
run: pnpm exec playwright install
- run: pnpm prepack
- run: pnpm ${{ matrix.command }}