Skip to content

chore(deps-dev): bump vite from 4.3.9 to 4.5.2 in /client #93

chore(deps-dev): bump vite from 4.3.9 to 4.5.2 in /client

chore(deps-dev): bump vite from 4.3.9 to 4.5.2 in /client #93

Workflow file for this run

name: client CI
on:
push:
branches:
- main
- dev
paths:
- "client/**"
pull_request:
branches:
- main
- dev
paths:
- "client/**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "./client"
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: npm ci
- name: run tests
run: npm run test
# Runs a single command using the runners shell
#- name: Run a one-line script
# run: echo Hello, world!
# Runs a set of commands using the runners shell
#- name: Run a multi-line script
# run: |
# echo Add other actions to build,
# echo test, and deploy your project.