Skip to content

Bump vite from 7.1.5 to 7.1.11 in the npm_and_yarn group across 1 directory #60

Bump vite from 7.1.5 to 7.1.11 in the npm_and_yarn group across 1 directory

Bump vite from 7.1.5 to 7.1.11 in the npm_and_yarn group across 1 directory #60

Workflow file for this run

name: Unit tests
on:
push:
branches: [main, 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