diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a5a17fdc5bb274842d4056a14606987133bba8eb
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,16 @@
+image: node:10.16.0-stretch
+
+cache:
+    paths:
+        - node_modules
+
+stages:
+    - test
+
+run_test:
+    stage: test
+    script:                
+        - npm i
+        - ./node_modules/@angular/cli/bin/ng build
+    tags:
+        - node