diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ed34bce813e49156bcb3999e19291835cc18302b..1d60aa82b2057024e5248a4cc0055910eb7ecf57 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,2 +1,16 @@
 # The Docker image that will be used to build your app
 image: node:lts
+# Functions that should be executed before the build script is run
+before_script:
+  - npm i
+pages:
+  script:
+    - npm run deploy
+  artifacts:
+    paths:
+      # The folder that contains the files to be exposed at the Page URL
+      - public
+  rules:
+    # This ensures that only pushes to the default branch will trigger
+    # a pages deploy
+    - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH