feat: Add package testing scripts and update CI workflow

Changes:
- Introduced new npm scripts for testing all packages and running tests across the server.
- Updated GitHub Actions workflow to include a step for running package tests.

Benefits:
 Enhanced testing capabilities for individual packages
 Improved CI process with comprehensive test coverage

All tests passing.
This commit is contained in:
Kacper
2025-12-21 02:25:01 +01:00
parent 0ce6b6d4b1
commit f2c40ab21a
3 changed files with 8 additions and 0 deletions

View File

@@ -23,6 +23,11 @@ jobs:
check-lockfile: "true"
rebuild-node-pty-path: "apps/server"
- name: Run package tests
run: npm run test:packages
env:
NODE_ENV: test
- name: Run server tests with coverage
run: npm run test:server:coverage
env: