Skip to content

Fixed alignment response rate #619

Fixed alignment response rate

Fixed alignment response rate #619

Workflow file for this run

name: Client Tests
on:
push:
paths:
- 'client/**'
- 'shared/**'
- '.github/workflows/client-tests.yml'
- '/*' # include changes in root
- '!api/**' # exclude api folder
- '!infrastructure/**' # exclude infra folder
- 'package.json'
workflow_dispatch:
jobs:
client-integration-tests:
name: Client Integration Tests
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Node setup
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: pnpm/action-setup@v4
- name: Cache dependencies
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node_modules-
- name: Install dependencies
working-directory: .
run: pnpm install
- name: Run Client tests
working-directory: client
run: pnpm test