From cef43a581fec526444c179e8048ba1451e293cc5 Mon Sep 17 00:00:00 2001 From: Mayur Ingle <33773206+thecoder8890@users.noreply.github.com> Date: Tue, 28 Apr 2020 18:27:02 +0530 Subject: [PATCH 1/2] Add .circleci/config.yml --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..4a8a9e2 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2.1 +orbs: + node: circleci/node@1.1.6 +jobs: + build-and-test: + executor: + name: node/default + steps: + - checkout + - node/with-cache: + steps: + - run: npm install + - run: npm test +workflows: + build-and-test: + jobs: + - build-and-test \ No newline at end of file From 4dc2b2c9878cdba5759f5e07eafc8312694af4e7 Mon Sep 17 00:00:00 2001 From: Mayur Ingle <33773206+thecoder8890@users.noreply.github.com> Date: Tue, 28 Apr 2020 18:28:54 +0530 Subject: [PATCH 2/2] Add .circleci/config.yml --- .circleci/config.yml | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4a8a9e2..a5e876c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,17 +1,9 @@ version: 2.1 + orbs: - node: circleci/node@1.1.6 -jobs: - build-and-test: - executor: - name: node/default - steps: - - checkout - - node/with-cache: - steps: - - run: npm install - - run: npm test + maven: circleci/maven@0.0.12 + workflows: - build-and-test: - jobs: - - build-and-test \ No newline at end of file + maven_test: + jobs: + - maven/test # checkout, build, test, and upload test results