From 4fd152668e7c390a1b6ee7c65070d72f3a88947a Mon Sep 17 00:00:00 2001 From: guidezSeb Date: Mon, 2 Nov 2020 10:59:28 +0100 Subject: [PATCH] step 3 change order --- .circleci/config.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1140f0f..98e3423 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,15 +12,15 @@ jobs: steps: # Commands are run in a Windows virtual machine environment - checkout - - run: yarn global add node-gyp - - run: yarn install - restore_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - - save_cache: - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - paths: - - ~/.cache/yarn + - run: yarn global add node-gyp + - run: yarn install - run: yarn lint - run: yarn format:write - run: yarn format:check - - run: yarn test:ci \ No newline at end of file + - run: yarn test:ci + - save_cache: + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + paths: + - ~/.cache/yarn \ No newline at end of file