From 82e545bcb3c8be94e4cd7484c4b5c99d3787e75f Mon Sep 17 00:00:00 2001
From: Christophe Chaudier <christophe@lydra.fr>
Date: Wed, 16 Nov 2022 18:10:01 +0100
Subject: [PATCH] fix: ci

---
 .gitlab-ci.yml | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e69de29..eb0d146 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -0,0 +1,18 @@
+# The Docker image that will be used to build your app
+image: node:16.13.2-slim
+
+pages:
+  tags:
+    - cache
+  cache:
+    paths:
+      - node_modules/
+  script:
+    # Specify the steps involved to build your app here
+    - npm ci
+    - npm run build
+  artifacts:
+    paths:
+      # The folder that contains the built files to be published.
+      # This must be called "public".
+      - public
-- 
GitLab