Skip to content

deps: bump vitest from 4.0.18 to 4.1.0 #11

deps: bump vitest from 4.0.18 to 4.1.0

deps: bump vitest from 4.0.18 to 4.1.0 #11

Workflow file for this run

name: Node CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node 24
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run check-types
- name: Build
run: npm run build
- name: Run tests
run: npm test