pcottle.learnGitBranching/.travis.yml
Hongarc 428be3e2f8
remove Node.js v7 in travis-ci
This project uses `contributor-faces`, it includes `gh-got`.

And `gh-got` require Node v8 so `travis-ci` will have the error.

So I have 2 option:

- Remove Nodejs v7 in `.travis.yml`
- Or install `contributor-faces` in your machine(require Node >= 8) and sometime run `contributor-faces .` in your project to update list contributor.
2019-04-10 23:18:01 +07:00

14 lines
244 B
YAML

sudo: false
language: node_js
node_js:
- "10"
- "8"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
cache:
yarn: true
directories:
- "node_modules"
script:
- yarn test