forked from kellyselden/ember-awesome-macros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
69 lines (61 loc) · 2.24 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
addons:
firefox: latest
branches:
only:
- master
# npm version tags
- /^v\d+\.\d+\.\d+$/
- /^greenkeeper\/.*$/
cache:
directories:
- $HOME/.npm
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
matrix:
# we recommend new addons test the current and previous LTS
# as well as latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-lts-2.12
- EMBER_TRY_SCENARIO=ember-lts-2.16
- EMBER_TRY_SCENARIO=ember-lts-2.18
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
include:
- stage: Deploy
addons: ignore
cache: ignore
env: ignore
before_install: ignore
install: ignore
script: ignore
deploy:
provider: npm
email: [email protected]
api_key:
secure: O6sXg2YWumDQ6dusv5l1eMXOPfg3uSyNW0SD7uoRKdaD6xdrkg7taRTEWCxhJmBGLGAIfMlhhHNuV9l3c11TiDyqlPCYLNRVjeHu+nsSJlgWG7aGrc8QgsWYBfMBnz5K5Lg+Mot6hRXOBYVsb/Yth2uZ6XliYE/o2gOkA2Sz/vcL+jsIu1iKnra0LPU8PVnbyv/HV/lzPhY0Ti0RxjSg4NZ6tWmS1HmawwT5S4NA0Al87vV/5DVV29rH/wlVSYj1hZByUAd16p63s9UM2Y8FF2w26fv5+lCaZ82GAwSkxZMtFlWthdO/GTsOm0niFSGbAIe7wIPzLSBXX3Y1Bet7MH1awf8qn/4ejX1hiA2FRsaVybGLmAsYw8t+ELmFedxn9y+D9qFS5Ul0i6d0vJDvb2T4fpigZgXfc4VEOCGAY9Pbaeco+St0chNsTzzL/EYcaKtZL3CL8KfCi+UJ7jXn6KMLkrDe+cdIrEjco5fsppERCNfKyPSm0rcXTzIHdPo3b0SNdDOEX3pt0SwF8ASUhbpA7rt907d67JIeBNfQyDfoXFvSuQVjq3+yG53Xy8G2IJOqch2dTKAoozo3aOH2w+3AcJ8h7vQuQ5LZ0ycHs/ksA7ZAaRr0L4rZKGmbVpXxoaLJ5MTTUxqgYI63L3j0ovgNH10ictNgKbNAHLUx2Mg=
on:
tags: true
repo: kellyselden/ember-awesome-macros
before_install:
- npm config set spin false
- npm install -g npm@5
- npm --version
script:
- npm run lint:js
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup