From a45a86873acdce8cad0078fbb954e8a75a1f2df6 Mon Sep 17 00:00:00 2001 From: Brandon Nozaki Miller Date: Thu, 1 Jul 2021 16:02:30 -0700 Subject: [PATCH] Delete appveyor.yml --- appveyor.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 96f598f..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,31 +0,0 @@ -# http://www.appveyor.com/docs/appveyor-yml - -# version format -version: 9.1.2.{build} - -# Test against these versions of Io.js and Node.js. -environment: - matrix: - # node.js - - nodejs_version: "8" - - nodejs_version: "10" - - nodejs_version: "12" - - nodejs_version: "14" - -# Install scripts. (runs after repo cloning) -install: - # Get the latest stable version of Node 0.STABLE.latest - - ps: Install-Product node $env:nodejs_version - - npm -g install npm - - npm install - -# Post-install test scripts. -test_script: - # Output useful info for debugging. - - node --version - - npm --version - # run tests - - npm run test-windows - -# Don't actually build. -build: off