From 1a5358d7e61e85b9d561eae4387f2e96646a9493 Mon Sep 17 00:00:00 2001 From: Marek Lesko Date: Tue, 15 Jul 2025 19:23:33 +0000 Subject: [PATCH] UPDATED CI/CD config #2 --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 85c00cb..6e66a9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ stages: # Define the stages of the pipeline. web-build: # This job runs in the build stage, which runs first. stage: build image: node:24 + parallel: 2 script: - cd Web - npm install @@ -18,6 +19,7 @@ web-build: # This job runs in the build stage, which runs first. api-build: stage: build image: mcr.microsoft.com/dotnet/sdk:8.0 + parallel: 2 script: - cd Api - dotnet publish Api.csproj --output ./build --runtime linux-x64 --configuration Release --self-contained true