diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8f725fcdfcb7a92299ecc6c9757f1cd823953c46..32b83db9787d88b07b454e39595a8f2d02bea36a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,7 +1,7 @@
 stages:
     - test-frontend
     - test-backend
-    - staging
+    - deploy
 
 test-frontend:
   image: node:latest
@@ -17,7 +17,7 @@ test-frontend:
     - export $(dbus-launch)
 
     # Install dependencies
-    - npm install
+    #- npm install
     - npm install -g testcafe
     - testcafe --list-browsers
     
@@ -33,10 +33,10 @@ test-backend:
     - pip install -r requirements.txt
     - python manage.py test
 
-staging:
+deploy:
   type: deploy
   image: ruby
-  stage: staging
+  stage: deploy
   script:
     - apt-get update -qy
     - apt-get install -y ruby-dev