aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 9ca5e17f5..8de14df7d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -11,9 +11,12 @@ cache:
11 11
12image: Visual Studio 2019 12image: Visual Studio 2019
13 13
14environment:
15 nodejs_version: "12.22.1"
16
14install: 17install:
15 - appveyor-retry git submodule update --init --recursive 18 - appveyor-retry git submodule update --init --recursive
16 - ps: Install-Product node 10 19 - ps: Install-Product node $env:nodejs_version
17 - cd recipes && npm install && npm run package && cd .. 20 - cd recipes && npm install && npm run package && cd ..
18 - appveyor-retry npx lerna bootstrap 21 - appveyor-retry npx lerna bootstrap
19 22