diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000000000000000000000000000000000000..00a751467224c09a2f39d77dee64d4e215f925c4
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,17 @@
+stages:
+  - build
+  - test
+
+build:
+   stage: build
+   script:
+    - echo "Building"
+    - npm install
+    - npm run build
+    - if["$CI_COMMIT_REF_NAME" == "master"]; then cp -R dist/* /var/www/example.com/html; fi
+
+test:
+   stage: test
+   script:
+    - echo "Testing"
+    - test -f "/var/www/html/index.html