Skip to content

chore(deps-dev): bump vitest from 1.2.1 to 1.5.0 #452

chore(deps-dev): bump vitest from 1.2.1 to 1.5.0

chore(deps-dev): bump vitest from 1.2.1 to 1.5.0 #452

Workflow file for this run

name: Build and test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.15.0]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Cypress install
run: ./node_modules/cypress/bin/cypress install
- name: Test unit
run: npm run test:unit
- name: Test server
run: npm run test:server
- name: Test example
run: npm run test:example