From 36e8042335a514570dfae6b2570a72b961462f2c Mon Sep 17 00:00:00 2001
From: Brandon Clayton <bclayton@usgs.gov>
Date: Wed, 13 Nov 2024 10:13:16 -0700
Subject: [PATCH] add parallel

---
 .gitlab-ci.yml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c748c96dc..ce4625abf 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
 
 ####
-- 
GitLab