From 39c7ce8566af3e11c3c05fe986f1e22314f2bcfd Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Mon, 5 Nov 2018 03:41:50 -0600 Subject: [PATCH] Stubbed out appveyor.xml's contents (#636) --- appveyor.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 8c04a2a6b..c594466b5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,20 +1,2 @@ -# Test against a newer version and an older version of Node.js -environment: - matrix: - - nodejs_version: "6" - - nodejs_version: "8" - -install: - # Get the latest stable version of Node.js - - ps: Install-Product node $env:nodejs_version - - npm install - -test_script: - # Output useful info for debugging. - - node --version - - npm --version - # run tests - - npm test - # Don't actually build. build: off