From eebdf9fef73884d1bf658256cf1222a899450979 Mon Sep 17 00:00:00 2001 From: "michael.divia" <michael.divia@etu.hesge.ch> Date: Tue, 19 Mar 2024 16:22:51 +0100 Subject: [PATCH] CICD Test 1 --- .gitlab-ci.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..b82f4e6 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +stages: + - build + +default: + image: node:lts-slim + cache: + key: $CI_COMMIT_REF_SLUG + paths: + - "node_modules/" + +build-frontend: + stage: build + before_script: + - npm install + script: + - npx ng build --aot -- GitLab