From 9b334d69f0e390aac131811abd30cb93ba9387d8 Mon Sep 17 00:00:00 2001 From: yash-chowdhary Date: Wed, 12 Feb 2020 17:07:55 +0800 Subject: [PATCH 1/2] Add AppVeyor config file --- appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..0ad9b65cce --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,18 @@ +# AppVeyor configuration file +environment: + nodejs_version: "8" + +# Install scripts +install: + # Install nodejs version + - ps: Install-Product node $env:nodejs_version + # Install modules + - npm ci + +# Post-install test scripts +test_script: + - node --version + - npm --version + - npm run testwin + +build: off From b7e2844eab543f8d6e62763b05f3228e2d32f074 Mon Sep 17 00:00:00 2001 From: yash-chowdhary Date: Tue, 3 Mar 2020 23:49:38 +0800 Subject: [PATCH 2/2] Update node version --- .travis.yml | 2 +- appveyor.yml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c94dcf0b9b..b54c2ca90f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: node_js node_js: - - '8' + - '10' deploy: # deploy on release, to markbind.org - provider: script diff --git a/appveyor.yml b/appveyor.yml index 0ad9b65cce..7b88f24ab9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,5 @@ -# AppVeyor configuration file environment: - nodejs_version: "8" + nodejs_version: "10" # Install scripts install: