From d87d3c07f84aa24730a6952bbc2d965b2ccf259c Mon Sep 17 00:00:00 2001 From: Alex Kanunnikov Date: Wed, 4 Oct 2023 15:46:36 +0200 Subject: [PATCH] chore: remove appveyour --- appveyor.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index abb9876d..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,24 +0,0 @@ -# Test against the latest version of this Node.js version -environment: - matrix: - - nodejs_version: "7" - - nodejs_version: "8" - -# Install scripts. (runs after repo cloning) -install: - # Get the latest stable version of Node.js or io.js - - ps: Install-Product node $env:nodejs_version - # install modules - - yarn install --ignore-engines - -# Post-install test scripts. -test_script: - # Output useful info for debugging. - - node --version - - yarn --version - # run tests - - yarn lint - - yarn test - -# Don't actually build. -build: off