diff --git a/.circleci/config.yml b/.circleci/config.yml index a9f17fe..bd66ea4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: - run: | cd back-end npm install # install all dependencies listed in package.json - npm start # run all unit tests + npm test # run all unit tests build-react-js: docker: - image: cimg/node:16.13.0 # latest stable node at the time of writing @@ -37,7 +37,7 @@ jobs: - run: | cd front-end npm install # install all dependencies listed in package.json - npm start # have react build the stand-alone front-end code + npm run build # have react build the stand-alone front-end code # Orchestrate our job run sequence workflows: