From 29fb000786b82e2d06d319021d3f0301e182d7b6 Mon Sep 17 00:00:00 2001 From: ndrg13 <72130242+ndrg13@users.noreply.github.com> Date: Thu, 5 Nov 2020 02:06:57 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index eef8bb2..edd10ee 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,7 +19,7 @@ jobs: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: - ~/.cache.yarn - + lint: docker: - image: circleci/node:12 @@ -37,12 +37,12 @@ jobs: - run: name: Format code with prettier command: yarn format:check - + test: docker: - image: circleci/node:12 auth: - username: nicodrg + sername: nicodrg password: Ndrg100394 steps: - checkout @@ -52,3 +52,11 @@ jobs: - run: name: Run test with jest command: yarn test:ci + +workflows: + version: 2 + integration: + jobs: + - build + - lint + - test