diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7968e922dd4ec55cc0362232d2d453129b689480..555f6c0ad5fb7262e639e7e7f22c35ee7554f4bf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,9 +27,8 @@ build:php:
 
   # Run our tests
   # If Xdebug was installed you can generate a coverage report and see code coverage metrics.
-  phplint:
-      script:
-          ./vendor/bin/phplint
+  script:
+    ./vendor/bin/phplint
 
 build:node:
   image: node:latest
@@ -39,11 +38,6 @@ build:node:
   cache:
     paths:
       - node_modules/
-
-  stylelint_css:
-    script:
-      npx stylelint "**/*.css"
-
-  stylelint_scss:
-    script:
-      npx stylelint "**/*.scss"
+  script:
+    npx stylelint "**/*.css"
+    npx stylelint "**/*.scss"