mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-05 10:35:32 +02:00
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.
14 lines
244 B
YAML
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
|