ci(test): separate running of heavy tests to avoid OOM issues

This commit is contained in:
Elian Doran
2026-03-05 18:28:27 +02:00
parent d2e0124962
commit 2c4cf2dcf1

View File

@@ -37,8 +37,14 @@ jobs:
- name: Typecheck
run: pnpm typecheck
- name: Run the unit tests
run: pnpm run test:all
- name: Run the client-side tests
run: pnpm run --filter=client test
- name: Run the server-side tests
run: pnpm run --filter=server test
- name: Run the rest of the tests
run: pnpm run --filter=!client --filter=!server test
build_docker:
name: Build Docker image