aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-04 13:27:04 +0530
committerLibravatar GitHub <noreply@github.com>2021-05-04 07:57:04 +0000
commit76b8b68636d992ac38598d94ca5354dc2316a273 (patch)
tree403f94fb6cb5a6e7b4de6b76425cd0a059659d16 /appveyor.yml
parentHighlight selected service correctly in Quick Switcher (#1324) (diff)
downloadferdium-app-76b8b68636d992ac38598d94ca5354dc2316a273.tar.gz
ferdium-app-76b8b68636d992ac38598d94ca5354dc2316a273.tar.zst
ferdium-app-76b8b68636d992ac38598d94ca5354dc2316a273.zip
Node downgrade to what's supported by appveyor (#1341)
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 1f5ebe1fc..5aab6e853 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -12,11 +12,12 @@ cache:
12image: Visual Studio 2019 12image: Visual Studio 2019
13 13
14environment: 14environment:
15 nodejs_version: "14.16.1" 15 nodejs_version: "14.15.0"
16 16
17install: 17install:
18 - appveyor-retry git submodule update --init --recursive 18 - appveyor-retry git submodule update --init --recursive
19 - ps: Install-Product node $env:nodejs_version 19 - ps: Install-Product node $env:nodejs_version
20 - cmd: set NODE_OPTIONS=--max-old-space-size=2048
20 - cd recipes && npm install && npm run package && cd .. 21 - cd recipes && npm install && npm run package && cd ..
21 - appveyor-retry npx lerna bootstrap 22 - appveyor-retry npx lerna bootstrap
22 23