diff --git a/.circleci/config.yml b/.circleci/config.yml index 2031578..bd72c2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -34,26 +34,6 @@ jobs: cd front-end npm install # install all dependencies listed in package.json npm run build # have react build the stand-alone front-end code - continuous-integration: - docker: - - image: cimg/node:16.13.0 # latest stable node at the time of writing - steps: - - checkout - - run: echo "this is the continuous integration job" - - run: | - ssh admin@206.189.180.175 - echo "yes" - git clone https://github.com/software-assignments-spring2022/final-project-codehunt.git - - cd final-project-codehunt/back-end - pm2 start npm -- start - cd final-project-codehunt/front-end - pm2 start npm -- start - - cd final-project-codehunt/front-end - npm run build - rm -rf final-project-codehunt/back-end/client - cp -R ./build final-project-codehunt/back-end/client # Orchestrate our job run sequence workflows: @@ -62,7 +42,4 @@ workflows: - build-and-test-express-js build-front-end: jobs: - - build-react-js - continuous-integration: - jobs: - - continuous-integration \ No newline at end of file + - build-react-js \ No newline at end of file