Skip to content

Bump vite from 5.2.8 to 5.4.6 in the npm_and_yarn group #31

Bump vite from 5.2.8 to 5.4.6 in the npm_and_yarn group

Bump vite from 5.2.8 to 5.4.6 in the npm_and_yarn group #31

Workflow file for this run

name: Unit tests
on:
push:
branches: [main, master, next]
pull_request:
workflow_dispatch:
jobs:
run-tests:
name: Run unit tests
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run build
- name: Run tests
run: npm run test:unit