From e064b818988abbf32a178cf5682f1e51556bdf1d Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Thu, 29 Feb 2024 11:03:15 +0100 Subject: [PATCH] [e2e] Fix CI script for e2e The modules need to run in the background and not block the shell, so that Cypress can run. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bb6f7b767..5a7b700c4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,8 +19,8 @@ test-e2e: before_script: - npm ci --cache .npm --prefer-offline script: - - npm run start-editor-local - - npm run start-player-local + - nohup npm run start-editor-local & + - nohup npm run start-player-local & - npm run e2e-headless #deploy: -- GitLab