diff --git a/.travis.yml b/.travis.yml index 715579f..8bcf43d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,12 +26,9 @@ branches: jobs: fail_fast: true - allow_failures: - - env: EMBER_TRY_SCENARIO=ember-canary include: # runs linting and tests with current locked deps - - stage: "Tests" name: "Tests" script: @@ -40,15 +37,15 @@ jobs: - yarn test - yarn test:node - # we recommend new addons test the current and previous LTS - # as well as latest stable release (bonus points to beta/canary) + # run additional tests against LTS versions of Ember CLI, + # latest stable release and current beta - stage: "Additional Tests" - env: EMBER_TRY_SCENARIO=ember-lts-2.18 - - env: EMBER_TRY_SCENARIO=ember-lts-3.4 - - env: EMBER_TRY_SCENARIO=ember-release - - env: EMBER_TRY_SCENARIO=ember-beta - - env: EMBER_TRY_SCENARIO=ember-canary - - env: EMBER_TRY_SCENARIO=ember-default-with-jquery + env: EMBER_CLI_VERSION=~3.4.0 + - env: EMBER_CLI_VERSION=~3.8.0 + - env: EMBER_CLI_VERSION=~3.12.0 + - env: EMBER_CLI_VERSION=latest + - env: EMBER_CLI_VERSION=beta script: - - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO + - yarn add -D ember-cli@${EMBER_CLI_VERSION} + - yarn test:node diff --git a/README.md b/README.md index 7ca1d24..5a429af 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Compatibility ------------------------------------------------------------------------------ * Ember.js v2.18 or above -* Ember CLI v2.13 or above +* Ember CLI v3.4 or above Installation