-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fdb4d0a
commit 39660ec
Showing
1 changed file
with
41 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,61 @@ | ||
--- | ||
language: node_js | ||
sudo: false | ||
dist: trusty | ||
node_js: | ||
- "6" | ||
|
||
- '6' | ||
addons: | ||
chrome: stable | ||
|
||
cache: | ||
yarn: true | ||
directories: | ||
- $HOME/.npm | ||
- $HOME/.cache # includes bowers cache | ||
- node_modules | ||
|
||
- "$HOME/.npm" | ||
- "$HOME/.cache" | ||
- node_modules | ||
env: | ||
global: | ||
- JOBS=1 | ||
|
||
- JOBS=1 | ||
before_install: | ||
- curl -o- -L https://yarnpkg.com/install.sh | bash | ||
- export PATH=$HOME/.yarn/bin:$PATH | ||
|
||
- curl -o- -L https://yarnpkg.com/install.sh | bash | ||
- export PATH=$HOME/.yarn/bin:$PATH | ||
install: | ||
- yarn install | ||
|
||
- yarn install | ||
notifications: | ||
email: false | ||
|
||
stages: | ||
- test | ||
- additional tests | ||
- fastboot tests | ||
- versioned tests | ||
|
||
- test | ||
- additional tests | ||
- fastboot tests | ||
- versioned tests | ||
script: | ||
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup | ||
|
||
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup | ||
jobs: | ||
fail_fast: true | ||
|
||
include: | ||
- stage: test | ||
env: NAME=test | ||
script: yarn test | ||
|
||
- stage: additional tests | ||
env: NAME=floating dependencies | ||
install: yarn install --no-lockfile --non-interactive | ||
script: yarn test | ||
|
||
- stage: fastboot tests | ||
node_js: "8" | ||
env: NAME=fastboot tests | ||
script: yarn test:fastboot | ||
|
||
- stage: versioned tests | ||
env: EMBER_TRY_SCENARIO=ember-lts-2.8 | ||
- env: EMBER_TRY_SCENARIO=ember-lts-2.12 | ||
- env: EMBER_TRY_SCENARIO=ember-lts-2.16 | ||
- env: EMBER_TRY_SCENARIO=ember-lts-2.18 | ||
- env: EMBER_TRY_SCENARIO=ember-release | ||
- env: EMBER_TRY_SCENARIO=ember-beta | ||
- env: EMBER_TRY_SCENARIO=ember-canary | ||
- env: EMBER_TRY_SCENARIO=ember-default | ||
- stage: test | ||
env: NAME=test | ||
script: yarn test | ||
- stage: additional tests | ||
env: NAME=floating dependencies | ||
install: yarn install --no-lockfile --non-interactive | ||
script: yarn test | ||
- stage: fastboot tests | ||
node_js: '8' | ||
env: NAME=fastboot tests | ||
script: yarn test:fastboot | ||
- stage: versioned tests | ||
env: EMBER_TRY_SCENARIO=ember-lts-2.8 | ||
- env: EMBER_TRY_SCENARIO=ember-lts-2.12 | ||
- env: EMBER_TRY_SCENARIO=ember-lts-2.16 | ||
- env: EMBER_TRY_SCENARIO=ember-lts-2.18 | ||
- env: EMBER_TRY_SCENARIO=ember-release | ||
- env: EMBER_TRY_SCENARIO=ember-beta | ||
- env: EMBER_TRY_SCENARIO=ember-canary | ||
- env: EMBER_TRY_SCENARIO=ember-default | ||
deploy: | ||
provider: npm | ||
email: [email protected] | ||
api_key: | ||
secure: nFJ55O4XenWChMIxeQV+yLjE1sw+lBI7UeHPWr9insyOiNnZF5B2zpv+EKOITwiuXNDhXt1XpzUUgeFzcXHtr3D/8L9hQQf53LP1AQDuv972BNyhgPK/+8XY1aMzgcWJbol4ahj6IQnNYEsgXypSkTTad2+ynP20sVaoSEb+MZZt1i+iYz/g7cDEKDDMj7JpfZD82iuvXgFOMl0x+BimXA7w1q87fZIuiNKaqQtoncZlx9PmCJmluY39AwfMaqxeWEc6zgZhbc4rx9l8+lpQ3zumtbtWyoc+kh0iGlEkvfvwAnHLeGvYAlnwDgxZ1l5j+AlP0OsUC1K8n02N/KJS25SBxmrbcSYEcIU4Td2Xw5hI/MuQ/g/A02czhQSZoGxmFCzgmzYm2Y0m2ctC2z3ZrE+8RgWdIMWVIsZLQ21+4enbLjOV0iNyLw5KFqF2mCNzqrEPDveBdc9eYGCVX+CxNjCGhL6liXceicLDqjdxZLYYP9WwSwz15CSw4Lil8txH9mHwr9iqBYUMJIN4RikoZGg90HScMzTrWeGcp1q3I2z8uuCzDS9bLrrTQz4K2MKZ5JFz24ydoOKsvToIqdJj+dlrn6LoFEq6GYM5HuDevvRp+4O2Q+xB2GSukSHoIfRviYF6rbhy42G17FlXGDzcX1T0xl1JSq7B6wDoUt37zjk= | ||
on: | ||
tags: true | ||
repo: embermap/ember-cli-tailwind |