From 8b19cd2ad5980bee823c2669bba17cc7a3b67dd1 Mon Sep 17 00:00:00 2001 From: Jonas Zohren <git-pbkyr@jzohren.de> Date: Sat, 25 Feb 2023 12:40:57 +0100 Subject: [PATCH] fix: simplify testing --- .gitlab-ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7e02572..a657621 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,12 +9,7 @@ test: image: "node:18-alpine" script: - "npm install" - - "npm run test -- --parallel --reporter mocha-junit-reporter --reporter-options mochaFile=junit.xml" - artifacts: - when: always - reports: - junit: - - junit.xml + - "npm run test -- --parallel" build_docker_main: needs: [] -- GitLab