Skip to content

chore(deps-dev): bump vite in /ui in the development-dependencies group #1317

chore(deps-dev): bump vite in /ui in the development-dependencies group

chore(deps-dev): bump vite in /ui in the development-dependencies group #1317

Workflow file for this run

name: Automated Tests and Linting
on:
push:
branches-ignore:
- "main"
- "develop"
jobs:
build:
runs-on: ubuntu-latest
name: "Test and Build"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: yarn
cache-dependency-path: "ui/yarn.lock"
- name: Install packages
run: yarn install --immutable
working-directory: ui
- name: Run tests
run: yarn test
working-directory: ui