From f9e8c3b165616840a062363235607dd462915326 Mon Sep 17 00:00:00 2001 From: Ryan Kes Date: Tue, 23 Jun 2020 17:58:58 +0200 Subject: [PATCH] Added circleci config --- .circleci/config.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..ba513bf --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,19 @@ +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 + - store_artifacts: + path: coverage +workflows: + build-and-test: + jobs: + - build-and-test