Skip to content

Bump vitest from 3.2.4 to 4.0.8 #103

Bump vitest from 3.2.4 to 4.0.8

Bump vitest from 3.2.4 to 4.0.8 #103

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
pull-requests: read
checks: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test