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