Skip to content

Bump vitest from 2.1.8 to 2.1.9 #128

Bump vitest from 2.1.8 to 2.1.9

Bump vitest from 2.1.8 to 2.1.9 #128

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- name: Install dependencies
run: npm ci
- name: Build website
run: npm run build
- name: Build npm package
run: npm run prepublishOnly
- name: Test
run: npm test