From e3e5c48f0bcd5a189a51e72a1531a24a8595e585 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Sun, 5 Jun 2016 11:21:45 +0300 Subject: [PATCH] Cache npm modules on appveyor https://www.appveyor.com/docs/build-cache#configuring-cache-items --- appveyor.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index c47fc293..cc5c6d78 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,5 +22,10 @@ test_script: - npm run lint:js - npm run lint:css +# cache npm modules +cache: + - node_modules + - '%APPDATA%\npm-cache' + # Don't actually build build: off