* update lerna and lerna-changelog * Lerna: enable yarn, yarn workspaces [skip ci] * use older version of Babel since it matches on semver (cannot be the same version) * install yarn version * revert node engine change * update flow * circle ci on 8 * update lock
41 lines
934 B
YAML
41 lines
934 B
YAML
git:
|
|
depth: 10
|
|
sudo: false
|
|
language: node_js
|
|
cache:
|
|
yarn: true
|
|
directories:
|
|
- node_modules
|
|
node_js:
|
|
- '8'
|
|
- '6'
|
|
- '4'
|
|
|
|
env:
|
|
global:
|
|
- PATH=$HOME/.yarn/bin:$PATH
|
|
- JOB=test
|
|
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.28.1
|
|
|
|
script:
|
|
- 'if [ "$JOB" = "test" ]; then make test-ci; fi'
|
|
- 'if [ "$JOB" = "lint" ]; then make lint && make flow; fi'
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- node_js: "node"
|
|
env: JOB=lint
|
|
|
|
notifications:
|
|
slack:
|
|
on_success: change
|
|
on_failure: always
|
|
rooms:
|
|
# Generate with
|
|
# travis encrypt "babeljs:<token>#activity" --add notifications.slack.rooms
|
|
# where <token> is from the Slack integration settings.
|
|
secure: SrwPKRe2AiNAKRo/+2yW/x4zxbWf2FBXuBuuPkdTJVTpWe++Jin1lXYJWTKP1a1i/IbmhffBO9YZcUFbeuXJpRM083vO8VYpyuBMQRqWD+Z3o+ttPlHGOJgnj0nkIcGRk6k7PpyHNnIkixfEJDvbbg9lN1Jswb3xkL8iYIHpuFE=
|