From 77d1e9497ee17fe93a43545eef53fea8876e1ebf Mon Sep 17 00:00:00 2001 From: sFish223 <84134715+sFish223@users.noreply.github.com> Date: Tue, 13 Jul 2021 14:50:05 -0400 Subject: [PATCH 1/4] Add .circleci/config.yml From eaab2cb48f0fb8d729117e00f12e3f044ad71fef Mon Sep 17 00:00:00 2001 From: sFish223 <84134715+sFish223@users.noreply.github.com> Date: Tue, 13 Jul 2021 14:50:26 -0400 Subject: [PATCH 2/4] Add .circleci/config.yml From cca187aaf68169ed1a54f28d94e27ef704b306db Mon Sep 17 00:00:00 2001 From: sFish223 <84134715+sFish223@users.noreply.github.com> Date: Tue, 13 Jul 2021 14:51:21 -0400 Subject: [PATCH 3/4] Add .circleci/config.yml From b579ada3c15c94856770f8eddbd6eccf65c1a5d6 Mon Sep 17 00:00:00 2001 From: sFish223 <84134715+sFish223@users.noreply.github.com> Date: Sun, 18 Jul 2021 09:56:25 -0400 Subject: [PATCH 4/4] Update 3 --- .circleci/config.yml | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 857f466a..ba0412bf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,14 +1,22 @@ -version: 2 -jobs: - build: - docker: # tircleci/node:10.0.0 # the primary container, where your job's commands are run - - image: circleci/node:10.0.0 # run in the background - steps: - - checkout # check out the code in the project directory - - run: npm install - - run: npm start & - - run: npm test - - deploy: - name: digital-ocean - command: ssh -o "StrictHostKeyChecking no" root@167.71.166.254"cd ~/circleciexpress; git pull; npm install; npm start &" - \ No newline at end of file +## version: 2 +## jobs: + ## build: + ## docker: # tircleci/node:10.0.0 # the primary container, where your job's commands are run + ## - image: circleci/node:10.0.0 # run in the background + ## steps: + ## - checkout # check out the code in the project directory + ## - run: npm install + ## - run: npm start & + ## - run: npm test + ## - deploy: + ## name: digital-ocean + ## command: ssh -o "StrictHostKeyChecking no" root@167.71.166.254"cd ~/circleciexpress; git pull; npm install; npm start &" + + +version: 2.1 +orbs: + node: circleci/node@3.0.0 +workflows: + node-tests: + jobs: + - node/test