Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 17 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,37 @@
os: osx
osx_image: xcode8.3

osx_image:
- xcode8.3
- xcode9.4
- xcode10.1

sudo: false

env:
matrix:
- TRAVIS_NODE_VERSION: '0.10'
- TRAVIS_NODE_VERSION: '0.12'
- TRAVIS_NODE_VERSION: '4'
- TRAVIS_NODE_VERSION: '6'
- TRAVIS_NODE_VERSION: '8'
- TRAVIS_NODE_VERSION: '10'

git:
depth: 10

before_install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm
&& git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm
install $TRAVIS_NODE_VERSION
- node --version
- npm --version
- npm cache clean
- npm install -g npm@3

install:
- npm install

script:
- npm test
- npm run jasmine

notifications:
slack:
secure: gn0YH0MCFOYR3Dd8Vsx3K/J9G0aazhnRjQVfqbeRKN3f6vToKif1CxhiDLXI6cxEB5DBiAtpK58jkoDYrXoNLGuSbiTHBJ+ankU8aG3s0OTIHa/8I0TjRKjBRc0PrMV7n7EiLC6LQxNe0x0mMSE1gdOUeS1UrZ5ZiVrS1u0eHHs=
10 changes: 7 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,22 @@
# http://www.appveyor.com/docs/appveyor-yml
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"

install:
- ps: Install-Product node $env:nodejs_version
- npm cache clean
- npm install -g npm@3
- node --version
- npm --version
- npm install

build: off

test_script:
- node --version
- npm --version
- npm test
- npm run jasmine