Skip to content

Commit ffce50f

Browse files
ci(Travis): Upgrade node version and switch npm scripts usage to yarn
1 parent a270ac8 commit ffce50f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.travis.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ cache:
66
notifications:
77
email: false
88
node_js:
9-
- '4'
9+
- '8'
1010
before_install:
11-
- npm i -g npm@^2.0.0
11+
- npm install --global npm
12+
- npm install --global yarn
1213
before_script:
13-
- npm prune
14+
- yarn install
1415
script:
15-
- npm run coverage
16+
- yarn run coverage
1617
after_success:
17-
- npm run report:coverage
18-
- npm run build
19-
- npm run semantic-release
18+
- yarn run report:coverage
19+
- yarn run build
20+
- yarn run semantic-release
2021
branches:
2122
only:
2223
- master

0 commit comments

Comments
 (0)