diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c748c96dcacfe61b086c44e2a9cda36d7bc5114d..ce4625abf4d41a4d7dd5ca3722d9199d95e56980 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -226,10 +226,22 @@ Unit Tests:
       - coverage/nshmp-apps
     reports:
       junit: junit.xml
+  parallel:
+    matrix:
+      - APP: dashboard
+      - APP: designmaps
+      - APP: dev
+      - APP: error-pages
+      - APP: gmm
+      - APP: hazard
+      - APP: ncm
+      - APP: services
+      - APP: source
+      - APP: app.component.*
   needs:
     - Init
   script:
-    - npm test
+    - npm run test -- projects/nshmp-apps/src/app/${APP}
   stage: test
 
 ####