From a9df316e917606111ca47a6901bc3cdfdbd46077 Mon Sep 17 00:00:00 2001 From: pdarcas Date: Mon, 2 Nov 2020 10:02:38 +0100 Subject: [PATCH] Install step --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8a9e18..7f16746 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,12 @@ jobs: steps: # Commands are run in a Windows virtual machine environment - checkout - - run: Write-Host 'Hello, Windows' + - save_cache: + paths: + - ~/.m2 + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + - run: yarn global add node-gyp && yarn install +