02f73bc44e
no issue - Travis runs all `script` tasks even if an earlier one fails so moved to using `&&` so ember tests aren't run if linting errors - Added `ember-cli-eslint` to the addons blacklist when building in Travis so that we aren't running linting twice (also reduces build log output)
38 lines
573 B
YAML
38 lines
573 B
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
language: node_js
|
|
node_js:
|
|
- "10"
|
|
|
|
env:
|
|
global:
|
|
- MOZ_HEADLESS=1
|
|
- JOBS=1 # See https://git.io/vdao3 for details.
|
|
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
|
|
|
|
branches:
|
|
except:
|
|
- /^renovate\//
|
|
|
|
cache:
|
|
yarn: true
|
|
|
|
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
|
|
|
|
script:
|
|
- npm run lint:js && COVERAGE=true npm test
|
|
|
|
after_success:
|
|
- npm run coverage
|