Skip to content

Task/architecture of project #56

Task/architecture of project

Task/architecture of project #56

Workflow file for this run

name: Test Check
on: [push, pull_request]
jobs:
test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
env:
FLUENT_USER_EMAIL: 'test@example.com'
run: npm test -- --ci