Skip to content

chore: github actions workflow for tests / visual regressions #2

chore: github actions workflow for tests / visual regressions

chore: github actions workflow for tests / visual regressions #2

Workflow file for this run

name: Runs vitest, typescript check, lint
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './client'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 22.x
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
working-directory: ./client
- name: Run all other tests
run: npm run test
working-directory: ./client