From 32b24d1edd7881dbe13b0a79cb0acdbecde8b0aa Mon Sep 17 00:00:00 2001 From: Shinnosuke Watanabe Date: Tue, 11 Dec 2018 21:37:18 +0900 Subject: [PATCH] use Travis CI Windows build instead of AppVeyor https://docs.travis-ci.com/user/reference/windows/ --- .travis.yml | 6 +++++- README.md | 3 +-- appveyor.yml | 9 --------- 3 files changed, 6 insertions(+), 12 deletions(-) delete mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml index 453cf23..9152e2e 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 --reporter=text-lcov | npx coveralls +matrix: + include: + - after_script: node_modules/.bin/nyc report --reporter=text-lcov | npx coveralls + - os: windows + script: node test.js diff --git a/README.md b/README.md index db5c7b8..a872b7d 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,13 @@ [![npm version](https://img.shields.io/npm/v/metalsmith-babel.svg)](https://www.npmjs.com/package/metalsmith-babel) [![Build Status](https://travis-ci.org/babel/metalsmith-babel.svg?branch=master)](https://travis-ci.org/babel/metalsmith-babel) -[![Build status](https://ci.appveyor.com/api/projects/status/k49tibi2lsbl0xk2?svg=true)](https://ci.appveyor.com/project/ShinnosukeWatanabe/metalsmith-babel) [![Coverage Status](https://img.shields.io/coveralls/babel/metalsmith-babel.svg)](https://coveralls.io/github/babel/metalsmith-babel) [Babel](https://babeljs.io/) plugin for [Metalsmith](https://github.com/segmentio/metalsmith) ## Installation -[Use](https://docs.npmjs.com/cli/install) [npm](https://docs.npmjs.com/getting-started/what-is-npm): +[Use](https://docs.npmjs.com/cli/install) [npm](https://docs.npmjs.com/about-npm/): ``` npm install metalsmith-babel diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index c812d87..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 install -build: off -test_script: node test.js