From 2c4cf2dcf144200492d86d88d7e49f8080bbb9fd Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 5 Mar 2026 18:28:27 +0200 Subject: [PATCH] ci(test): separate running of heavy tests to avoid OOM issues --- .github/workflows/dev.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 041a31ea4a..1076208a39 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -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