From e0d7eea05a6f42aa3e2c31e71e8005afc6cd7599 Mon Sep 17 00:00:00 2001 From: hallouma875 Date: Wed, 4 Nov 2020 14:36:47 +0100 Subject: [PATCH] install step-fix --- .circleci/config.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c2e799d..6666c81 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,19 +4,12 @@ orbs: win: circleci/windows@2.2.0 # The Windows orb give you everything you need to start using the Windows executor. jobs: - build: # name of your job - executor: - name: win/default # executor type - size: "medium" # resource class, can be "medium", "large", "xlarge", "2xlarge", defaults to "medium" if not specified - + build: steps: - checkout - restore_cache: key: yarn-cache{{ checksum "yarn.lock" }} - - run: - name: install-yarn - command : yarn global add node-gyp && yarn install - + - run: yarn global add node-gyp && yarn install - save_cache: key: yarn-cache{{ checksum "yarn.lock" }} paths: