Update travis config (#537)
* Update travis config * Coverage and caching * Update README with badges and correct issues link * Update .travis.yml Co-Authored-By: Tony Brix <tony@brix.ninja> * Update .travis.yml Co-Authored-By: Tony Brix <tony@brix.ninja> * Add windows * Remove Windows. Does not work on Travis * Use jobs style config * Tweak target vesions * Fix script * How about this?
This commit is contained in:
parent
9b05c1ccc3
commit
d5fa04209a
35
.travis.yml
35
.travis.yml
|
@ -1,6 +1,33 @@
|
|||
sudo: false
|
||||
|
||||
git:
|
||||
depth: 3
|
||||
|
||||
branches:
|
||||
only:
|
||||
- next
|
||||
- master
|
||||
|
||||
language: node_js
|
||||
|
||||
node_js:
|
||||
- "0.10"
|
||||
- "0.12"
|
||||
- "4"
|
||||
- "stable"
|
||||
- lts/*
|
||||
- node
|
||||
|
||||
os:
|
||||
- linux
|
||||
# - windows
|
||||
|
||||
cache:
|
||||
npm: true
|
||||
|
||||
stages:
|
||||
- test
|
||||
|
||||
jobs:
|
||||
include:
|
||||
# - stage: lint ✨
|
||||
# script: npm run lint
|
||||
|
||||
- stage: test 👩🏽💻
|
||||
script: npm run test:cov
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
# LDAPjs
|
||||
|
||||
[!['Build status'][travis_image_url]][travis_page_url]
|
||||
|
||||
[travis_image_url]: https://api.travis-ci.org/joyent/node-ldapjs.svg
|
||||
[travis_page_url]: https://travis-ci.org/joyent/node-ldapjs
|
||||
[](https://travis-ci.org/ldapjs/node-ldapjs)
|
||||
[](https://coveralls.io/github/ldapjs/node-ldapjs?branch=ci-cleanup)
|
||||
|
||||
LDAPjs makes the LDAP protocol a first class citizen in Node.js.
|
||||
|
||||
|
@ -53,4 +51,4 @@ MIT.
|
|||
|
||||
## Bugs
|
||||
|
||||
See <https://github.com/mcavage/node-ldapjs/issues>.
|
||||
See <https://github.com/ldapjs/node-ldapjs/issues>.
|
||||
|
|
Loading…
Reference in New Issue