Tone.js/.travis.yml
2018-05-18 13:42:21 -04:00

90 lines
2.1 KiB
YAML

sudo: false
dist: trusty
language: node_js
node_js:
- '9'
install:
- npm i -g npm@latest
- npm ci
before_script:
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis CI"
script: npm run test:travis
after_success:
- npm run coveralls
before_deploy:
- cd gulp
- npm install -g jsdoc
- sh deploy_updates.sh
- node increment_version.js
- cd ../
jobs:
include:
- stage: test
script: npm run test:travis
env : BROWSER=chrome
os: linux
addons:
chrome: stable
# - stage: test
# script: gulp travis-test
# env : BROWSER=chrome
# os: linux
# addons:
# chrome: beta
# - stage: test
# script: gulp travis-test
# env : BROWSER=firefox
# os: linux
# addons:
# firefox: latest
# - stage: test
# script:
# # needs an audio output device to run
# - HOMEBREW_NO_AUTO_UPDATE=1 brew install Caskroom/cask/soundflower
# - gulp travis-test
# env : BROWSER=safari
# os: osx
# - stage: test
# script:
# # needs an audio output device to run
# - HOMEBREW_NO_AUTO_UPDATE=1 brew install Caskroom/cask/soundflower
# - gulp travis-test
# env : BROWSER=safari
# os: osx
# # test on an older safari
# osx_image: xcode6.4
- stage: deploy
os: linux
script: skip
deploy:
- provider: npm
skip_cleanup: true
email: yotammann@gmail.com
api_key: $NPM_TOKEN
tag: next
on:
repo: Tonejs/Tone.js
branch: dev
# publish without @next when pushing on master
- provider: npm
skip_cleanup: true
email: yotammann@gmail.com
api_key: $NPM_TOKEN
on:
repo: Tonejs/Tone.js
branch: master
# publish build files for releases
- provider: releases
api-key: $GH_TOKEN
file_glob: true
file: build/*
skip_cleanup: true
on:
tags: true
# cache node_modules to speed up build
cache:
directories:
# - node_modules
# - gulp/node_modules
- $HOME/Library/Caches/Homebrew