From 106329e84eecb0fca49b1252843baec073bab9dd Mon Sep 17 00:00:00 2001 From: ndrg13 <72130242+ndrg13@users.noreply.github.com> Date: Thu, 5 Nov 2020 11:30:39 +0100 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 75a3167..54f7422 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,8 @@ jobs: - checkout - restore_cache: name: Restore Yarn package cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: name: Install dependencies command: yarn global add node-gyp && yarn install @@ -30,7 +31,8 @@ jobs: - checkout - restore_cache: name: Restore Yarn package cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: name: Analyse code with tslint command: yarn lint @@ -48,7 +50,8 @@ jobs: - checkout - restore_cache: name: Restore Yarn package cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + keys: + - npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: name: Run test with jest command: yarn test:ci