From dee5380e608287c60639c50ff4f23d17be671fb7 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 5 Mar 2026 23:46:50 +0200 Subject: [PATCH] fix(ci): sequential tests ended up run in parallel --- .github/workflows/dev.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 5a281f5bf2..5392690413 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -59,8 +59,13 @@ jobs: path: apps/server/test-output/vitest/html/ retention-days: 30 + - name: Run CKEditor e2e tests + run: | + pnpm run --filter=ckeditor5-mermaid test + pnpm run --filter=ckeditor5-math test + - name: Run the rest of the tests - run: pnpm run --filter=\!client --filter=\!server test + run: pnpm run --filter=\!client --filter=\!server --filter=\!ckeditor5-mermaid --filter=\!ckeditor5-math test build_docker: name: Build Docker image