aboutsummaryrefslogtreecommitdiffstats
path: root/appveyor.yml
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-04-26 14:18:56 +0530
committerLibravatar GitHub <noreply@github.com>2021-04-26 08:48:56 +0000
commitc4575638110a40f563cfd959ba774810e29e8d66 (patch)
treed4148ca6f7b2a02f87d0c2b468dc4ea5c19fef43 /appveyor.yml
parentUpgraded electron and related electron packages (#1297) (diff)
downloadferdium-app-c4575638110a40f563cfd959ba774810e29e8d66.tar.gz
ferdium-app-c4575638110a40f563cfd959ba774810e29e8d66.tar.zst
ferdium-app-c4575638110a40f563cfd959ba774810e29e8d66.zip
Upgrading nodejs to 12.22.1 (#1293)
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