forked from embermap/ember-cli-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
85 lines (72 loc) · 2.83 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
language: node_js
node_js:
- "8"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
directories:
- "$HOME/.npm"
- "$HOME/.cache"
- node_modules
env:
global:
- JOBS=1
install:
- yarn install --no-lockfile --non-interactive
notifications:
email: false
jobs:
fail_fast: true
include:
- stage: locked dependencies
env: NAME=browser tests
install: yarn install
script: yarn test:browser
- env: NAME=node-tests
install: yarn install
script: yarn test:node
- env: NAME=test-projects
install: yarn install
script: yarn test:test-projects
- stage: floating dependencies
env: NAME=browser tests
script: yarn test:browser
- env: NAME=node tests
script: yarn test:node
- env: NAME=test-projects
script: yarn test:test-projects
- stage: fastboot tests
env: NAME=fastboot tests
script: yarn test:fastboot
- stage: versioned tests
env: EMBER_TRY_SCENARIO=ember-lts-2.12
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- env: EMBER_TRY_SCENARIO=ember-lts-2.16
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- env: EMBER_TRY_SCENARIO=ember-lts-2.18
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- env: EMBER_TRY_SCENARIO=ember-release
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- env: EMBER_TRY_SCENARIO=ember-beta
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- env: EMBER_TRY_SCENARIO=ember-canary
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- env: EMBER_TRY_SCENARIO=ember-default
script: node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO --skip-cleanup
- stage: npm release
install: skip
script: skip
deploy:
provider: npm
email: [email protected]
api_key:
secure: tZ0Ca9sS8lcXIED8QtKwT5kwo4q1jtGoIWVCw9y8Abkwth8CQP4NlY6kgnnoC1hR4qe+2WnNOzH52Ph7USbf4gmeE8FyE1IIZ2IjmedCJB7Q1j7ZOcpbX+hL2RJgAWW1Uoutch3Y8myfHTOFG5SL8oFkf8m89IlX+X1KzB7wXyu8BfQr8eQZwUDQC+UXpJ8kE9gA+6fJmY5Do4wQHxFNgtmhROUhGfPYFc4ysb/TnaJS2fvOSvB78cjcFDlqAHhp3toP3PMFt/N7o/bU9E6eetYwp1bGoMlqfQRCg1YriZ+KcoRHgbbM4XWqveiu27z4mdOJIWUPdCvByvwyftCyZ/AhOHAfboteHX9dcRP6DyMQmt9XHpg5LNt5hjn2dNXgRigKApZOsyXNRzRTM0VnZNxavE+evLVIy6/Od+rb8YkDk2MIX4C/Sjw4EOkwU1LZlrY899g1/1XMOdVMpB0TC4ekFDQeRR7tddMcvXSjZ9QDFpCzdJkYQx5e+isqr1XaaZt0dcLYqcbPPXd7P5gWVh+gB2siIHQcQKeBslRTW8YjkL025WoXkAVymvPlZFkanXwiPNVXp6a5xVpwSKzsvwawpg/7V0MzxzqKANexQ6/X3ETbBNnnh29OaVuuN2NXR4UG+CZhcT/eNDhoUMyaHZuBcDYJql5jOuq22VloSH0=
on:
tags: true
repo: embermap/ember-cli-tailwind
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-beta
- env: EMBER_TRY_SCENARIO=ember-canary