diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fe485522937a6d641fb5305bf1506723fa1cc38b..697be36e2117594d59d43860d8e8f83a726e0fda 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,21 +1,11 @@
 before_script:
-    - echo "HOME = $HOME"
     - export NVM_DIR="$HOME/.nvm"
-    - echo "NVM_DIR = $NVM_DIR"
     - . "$NVM_DIR/nvm.sh"
 
-yarn-build:
-  stage: build
-  tags:
-    - redshift
-  script:
-    - yarn
-
-yarn-test:
+test:
   stage: test
   tags:
     - redshift
   script:
     - yarn
     - yarn test
-    - echo "Success!"