From 18dea4aabd8c82b47ab805a7f110a1662cf87c82 Mon Sep 17 00:00:00 2001 From: Leon Hoppe Date: Tue, 6 Sep 2022 15:26:49 +0000 Subject: [PATCH] Update .gitlab-ci.yml file --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a71919e..f2860ae 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,13 +24,13 @@ stages: # List of stages for jobs, and their order of execution build-job: # This job runs in the build stage, which runs first. stage: build script: - - cd frontend && npm install - - cd backend && dotnet restore + - npm install + - dotnet restore unit-test-job: # This job runs in the test stage. stage: test # It only starts when the job in the build stage completes successfully. script: - - cd frontend && npm test + - npm test deploy-job: # This job runs in the deploy stage. stage: deploy # It only runs when *both* jobs in the test stage complete successfully.