From dac1bdb2ed706fcd4de059e5648a14d1be36141c Mon Sep 17 00:00:00 2001
From: Artur Carvalho <artur.carvalho@uni.lu>
Date: Wed, 18 Jan 2023 14:57:54 +0100
Subject: [PATCH] Try again

---
 .gitlab-ci.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ab54da9..afdece5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,14 +29,14 @@ e2e tests:
     - npm i # todo: cache from build?
     - npx playwright install
   script:
-    - npm run test:e2e
-  cache:
-    key: ${CI_COMMIT_REF_SLUG}-e2e
-    paths:
-      - node_modules
+    - npx playwright test
+  # cache:
+  #   key: ${CI_COMMIT_REF_SLUG}-e2e
+  #   paths:
+  #     - node_modules
   artifacts:
     when: always # on_failure
     paths:
-      - out/report      
+      - e2e/out/report
     reports:
-      junit: results.xml
+      junit: e2e/out/report/results.xml
-- 
GitLab