Skip to content

chore(deps-dev): bump vitest from 2.1.9 to 4.1.4 #10

chore(deps-dev): bump vitest from 2.1.9 to 4.1.4

chore(deps-dev): bump vitest from 2.1.9 to 4.1.4 #10

Workflow file for this run

name: CI
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm run test
- run: npm run build