From 75f998a8fc5a73f9d5cae0273826f1734d7dc928 Mon Sep 17 00:00:00 2001 From: Ryan Kes <511318+alrayyes@users.noreply.github.com> Date: Tue, 23 Jun 2020 17:42:15 +0200 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 0000000..c0dfdff --- /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: yarn install + - run: yarn test:coverage +workflows: + build-and-test: + jobs: + - build-and-test \ No newline at end of file