diff --git a/.travis.yml b/.travis.yml index 2538350..1151730 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,4 +2,8 @@ branches: except: /^v\d/ language: node_js node_js: node -after_script: node_modules/.bin/nyc report | npx coveralls +matrix: + include: + - after_script: node_modules/.bin/nyc report | npx coveralls + - os: windows + script: node test.js diff --git a/README.md b/README.md index b47e77d..508424a 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,6 @@ [![npm version](https://img.shields.io/npm/v/dl-tar.svg)](https://www.npmjs.com/package/dl-tar) [![Build Status](https://travis-ci.org/shinnn/dl-tar.svg?branch=master)](https://travis-ci.org/shinnn/dl-tar) -[![Build status](https://ci.appveyor.com/api/projects/status/83sbr9dtbp3hreoy/branch/master?svg=true)](https://ci.appveyor.com/project/ShinnosukeWatanabe/dl-tar/branch/master) [![Coverage Status](https://img.shields.io/coveralls/shinnn/dl-tar.svg)](https://coveralls.io/github/shinnn/dl-tar?branch=master) A [Node.js](https://nodejs.org/) module to download and extract a [tar](https://www.gnu.org/software/tar/) archive with the [Observable](https://tc39.github.io/proposal-observable/) API diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index eeff837..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,9 +0,0 @@ -image: Visual Studio 2017 -platform: x64 -shallow_clone: true -skip_tags: true -install: - - ps: Install-Product node Stable x64 - - npm ci -build: off -test_script: node test.js