Skip to content

build(deps-dev): bump vitest from 2.1.3 to 2.1.5 #355

build(deps-dev): bump vitest from 2.1.3 to 2.1.5

build(deps-dev): bump vitest from 2.1.3 to 2.1.5 #355

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ^9
run_install: false
- name: Install Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Execute tests
run: pnpm test
env:
CI: true
- name: Build
run: pnpm --filter "@fractality/mandelbrot" build