Skip to content
This repository was archived by the owner on Feb 8, 2020. It is now read-only.

Commit e30e00a

Browse files
author
Charlike Mike Reagent
committed
fix(ci): use npx in travis and test only on node 6
Note: next version will require Node 8 & npm 5.2 & yarn 1.3 TAG: latest
1 parent cf06879 commit e30e00a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,23 @@ cache:
1010
- node_modules
1111

1212
node_js:
13-
- '8'
13+
# - '8'
1414
- '6'
1515

1616
os: linux
1717

1818
before_install:
1919
- curl -o- -L https://yarnpkg.com/install.sh | bash
2020
- export PATH=$HOME/.yarn/bin:$PATH
21+
- yarn global add npx
22+
23+
install: npx -p node@8 yarn install
2124

2225
script: yarn test
2326

2427
after_success:
2528
- bash <(curl -s https://codecov.io/bash)
26-
- yarn run release
29+
- npx -p node@8 yarn run release
2730

2831
branches:
2932
except:

0 commit comments

Comments
 (0)