From 1cf27561e6f45cc2597419e2465e5d4eab6325a3 Mon Sep 17 00:00:00 2001 From: Andreas <andreksv@ntnu.no> Date: Fri, 26 Apr 2024 13:15:05 +0200 Subject: [PATCH] bug/Fixed leaderboard getSurrounding repository missing user at s --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b256e1..73dc1fa 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,6 +9,7 @@ cache: stages: - install - build + - test install_dependencies: stage: install @@ -32,3 +33,17 @@ build_project: paths: - node_modules/ policy: pull + artifacts: + name: "Build project ${CI_COMMIT_REF_NAME}-${CI_JOB_ID}" + paths: + - build/ + expire_in: 1 day + +vitest_unit-tests: + stage: test + script: + - npm run test:unit + + + + -- GitLab