Tone.js/.travis.yml

88 lines
2.2 KiB
YAML
Raw Normal View History

2017-08-30 13:45:22 +00:00
sudo: false
dist: trusty
language: node_js
node_js:
2018-05-18 17:38:38 +00:00
- '9'
2018-05-18 17:35:58 +00:00
install:
2018-05-18 23:21:08 +00:00
- npm i -g npm@latest
- npm ci
2017-09-09 22:32:31 +00:00
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis CI"
script:
- npm run test:travis
2018-05-18 16:26:09 +00:00
- npm run coveralls
before_deploy: npm run increment
2017-12-27 23:20:40 +00:00
jobs:
include:
2017-12-29 17:52:30 +00:00
- stage: test
env : BROWSER=chrome
os: linux
addons:
chrome: stable
2018-05-19 15:57:06 +00:00
- stage: test
env : BROWSER=chrome
os: linux
addons:
chrome: beta
- stage: test
env : BROWSER=firefox
os: linux
addons:
firefox: latest
- stage: test
env : BROWSER=firefox
os: linux
addons:
firefox: latest-nightly
- stage: test
before_script:
# needs an audio output device to run
- HOMEBREW_NO_AUTO_UPDATE=1 brew install Caskroom/cask/soundflower
env : BROWSER=safari
os: osx
- stage: test
before_script:
# needs an audio output device to run
- HOMEBREW_NO_AUTO_UPDATE=1 brew install Caskroom/cask/soundflower
env : BROWSER=safari
os: osx
2018-05-19 15:57:06 +00:00
# test on an older safari
osx_image: xcode6.4
2017-12-27 23:20:40 +00:00
- stage: deploy
2017-12-28 23:59:52 +00:00
os: linux
script: npm run build
2017-12-27 23:20:40 +00:00
deploy:
2017-12-30 16:30:01 +00:00
- provider: npm
skip_cleanup: true
email: yotammann@gmail.com
api_key: $NPM_TOKEN
tag: next
on:
repo: Tonejs/Tone.js
branch: dev
# don't publish on cron or PRs
condition: $TRAVIS_EVENT_TYPE != cron && $TRAVIS_EVENT_TYPE != pull_request
2017-12-27 23:20:40 +00:00
# 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
# don't publish on cron or PRs
condition: $TRAVIS_EVENT_TYPE != cron && $TRAVIS_EVENT_TYPE != pull_request
2017-12-27 23:20:40 +00:00
# publish build files for releases
- provider: releases
api-key: $GH_TOKEN
file_glob: true
file: build/*
skip_cleanup: true
on:
tags: true
2017-11-29 20:46:31 +00:00
# cache node_modules to speed up build
cache:
directories:
2018-05-18 23:21:08 +00:00
- node_modules
2017-12-29 17:57:55 +00:00
- $HOME/Library/Caches/Homebrew