Skip to content

chore(deps-dev): bump @types/node from 22.10.5 to 22.10.7 in /client #177

chore(deps-dev): bump @types/node from 22.10.5 to 22.10.7 in /client

chore(deps-dev): bump @types/node from 22.10.5 to 22.10.7 in /client #177

Workflow file for this run

name: Client Test
on:
pull_request:
branches:
- develop
jobs:
test:
name: Run Client Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: |
cd client
npm ci --cache .npm --prefer-offline
- name: Run vitest
run: |
cd client
npm run test