mirror of
https://github.com/lovell/sharp.git
synced 2025-07-16 05:30:13 +02:00
Reduce production (sub)depedency count from 93 to 50. Modernise dev tooling, e.g. use nyc, replace jshint with semistandard. Make 'npm test' command consistent across platforms.
22 lines
390 B
YAML
22 lines
390 B
YAML
language: node_js
|
|
node_js:
|
|
- "4"
|
|
- "6"
|
|
- "7"
|
|
os:
|
|
- linux
|
|
- osx
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
osx_image: xcode8
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
|
|
after_success:
|
|
- npm install coveralls
|
|
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
|