Skip to content

Commit dc01de4

Browse files
authored
Merge pull request ember-cli-deploy#17 from ember-cli-deploy/chore/add-yarn
Add yarn.lock and use yarn on CI
2 parents 8c750f0 + 96c3e16 commit dc01de4

File tree

2 files changed

+5062
-10
lines changed

2 files changed

+5062
-10
lines changed

.travis.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,13 @@ node_js:
66
sudo: false
77

88
cache:
9+
yarn: true
910
directories:
10-
- $HOME/.npm
1111
- $HOME/.cache # includes bowers cache
1212

13-
before_install:
14-
- npm config set spin false
15-
- npm install -g bower
16-
- bower --version
17-
18-
install:
19-
- npm install
20-
- bower install
13+
before_script:
14+
- yarn global add bower # this would be better to do in install step,
15+
- bower install # once travis' yarn support improves
2116

2217
script:
23-
- npm test
18+
- yarn test

0 commit comments

Comments
 (0)