From db3e5ff50760300d3f2b2dc9e90c1d8232f34545 Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Thu, 16 Mar 2023 12:10:40 -0500 Subject: [PATCH] add `npm run build` before `npm run start`, so a build failure gives a cleaner error to circleci --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce065e1..0ac03b9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -49,6 +49,7 @@ commands: name: Run react app and mvn verify command: | echo "HTTPS=true" >> ./.env + npm run build export REACT_APP_PROXY_LOCALHOST_PORT=8001; export PORT=3001; npm run start & dockerize -wait tcp://localhost:3001 -timeout 3m export QQQ_SELENIUM_HEADLESS=true; mvn verify