From b8815125271fc79d86c12c362aa7ae7e5ad6d3e0 Mon Sep 17 00:00:00 2001
From: Andreas <andreksv@ntnu.no>
Date: Wed, 17 Apr 2024 09:32:55 +0200
Subject: [PATCH] feat/Add initial GitLab CI configuration

---
 .gitlab-ci.yml | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..4450c01
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,20 @@
+stages:
+  - install
+  - build
+
+cache:
+  paths:
+    - node_modules/
+  key: "$CI_BUILD_REF_NAME" # Separate cache for each branch
+
+install_dependencies:
+  stage: install
+  image: node:latest
+  script:
+    - npm install
+
+build_project:
+  stage: build
+  image: node:latest
+  script:
+    - npm run build
\ No newline at end of file
-- 
GitLab