From d42da7efc03582df7450ffe6ebc35cb309f7627f Mon Sep 17 00:00:00 2001 From: Steven Kao <53606718+peichunkao@users.noreply.github.com> Date: Thu, 20 Feb 2020 20:47:35 +1100 Subject: [PATCH] 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 00000000..4a8a9e2d --- /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