From ce3bd06e15b6e20a0bc53e151a677edec832761c Mon Sep 17 00:00:00 2001 From: Evgeny Kochetkov Date: Tue, 26 Jan 2021 18:32:16 +0300 Subject: [PATCH] tweak(infra): use caching for node_modules in windows CI --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 159f9158..ab6cd285 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -185,11 +185,13 @@ jobs: steps: - run: *step-configure-git-on-windows - checkout + - restore_cache: *restore-node_modules - run: *step-install-node-on-windows - run: *step-install-yarn-on-windows - run: name: Install Node modules command: yarn + - save_cache: *cache-node_modules - run: *step-build - run: *step-verify-git-clean @@ -284,6 +286,7 @@ jobs: steps: - run: *step-configure-git-on-windows - checkout + - restore_cache: *restore-node_modules - run: *step-install-node-on-windows - run: *step-install-yarn-on-windows - run: *step-install-arduino-cli-on-windows