Skip to content

Bump vitest from 1.5.1 to 3.0.5 #680

Bump vitest from 1.5.1 to 3.0.5

Bump vitest from 1.5.1 to 3.0.5 #680

Workflow file for this run

name: dedi-web code CI
on:
workflow_call:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
os: ["ubuntu-latest"]
node-version: [20.x, 22.x, 23.x]
name: test/${{ matrix.node-version }}/${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
defaults:
run:
working-directory: .
steps:
- name: Checkout Source
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install
run: npm ci
- name: lint
run: |
npm run lint
- name: Tests
run: npm run test
- name: build
run: npm run build