Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

CI: test ember 2.18.2, use lts node in travis, yarn #260

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
language: node_js
node_js:
- "4"
node_js: lts/carbon
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Carbon is Node 8, but we still support Node 6 as the minimum. Actually we even support Node 4 with the current release. If we drop support that would be a breaking change and we should adjust the support declaration in the package.json file.


sudo: false
dist: trusty
Expand All @@ -14,7 +13,6 @@ cache:
directories:
- $HOME/.cache # includes bowers cache

env:
env:
global:
- DEBUG="auto-dist-tag"
Expand All @@ -23,6 +21,9 @@ env:
# as well as latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
# final LTS for 2.x line:
- EMBER_TRY_SCENARIO=ember-2.18
# 3.x +
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
Expand Down
17 changes: 17 additions & 0 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
/* eslint-env node */

module.exports = {
useYarn: true,
scenarios: [
{
name: 'ember-lts-2.4',
Expand Down Expand Up @@ -36,6 +37,22 @@ module.exports = {
}
}
},
{
name: 'ember-2.18',
bower: {
dependencies: {
'ember': 'components/ember#2.18'
},
resolutions: {
'ember': '2.18'
}
},
npm: {
devDependencies: {
'ember-source': null
}
}
},
{
name: 'ember-release',
bower: {
Expand Down