Ghost/ghost/admin/.travis.yml
Kevin Ansfield 336e57b17a Bump dependencies (#887)
no issue

- ember/ember-data/ember-cli@2.16
- bump all outdated dependencies that do not require additional work or more extensive tests
- bump sub-dependencies in yarn.lock
- use `broccoli-uglify-sourcemap` (same dep as already used in `ember-cli-uglify`) instead of a separate `broccoli-uglify-js` package for building production codemirror assets
- add `/concat-stats-for` to `.gitignore` so that filesize stats from `CONCAT_STATS=true ember build` don't end up in the repo
2017-10-12 17:42:10 +02:00

45 lines
736 B
YAML

sudo: required
dist: trusty
language: node_js
node_js:
- "4"
env:
global:
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
- JOBS=1 # See https://git.io/vdao3 for details.
branches:
except:
- /^greenkeeper-.+$/
cache:
yarn: true
directories:
- $HOME/.npm
- $HOME/.cache # includes bower's cache
addons:
firefox: "latest"
chrome: "stable"
before_install:
# install latest yarn
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn global add bower
- yarn
- bower install
before_script:
- export DISPLAY=:99; sh -e /etc/init.d/xvfb start; sleep 3;
script:
- COVERAGE=true npm test
after_success:
- npm run coverage