Skip to content

Commit

Permalink
Add node 11 to CI and remove node 9 (#9096)
Browse files Browse the repository at this point in the history
  • Loading branch information
danez committed Nov 28, 2018
1 parent 559d649 commit 6e39b58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -34,7 +34,7 @@ jobs:
build:
working_directory: ~/babel
docker:
- image: circleci/node:10
- image: circleci/node:11
steps:
- checkout
- restore-cache: *restore-yarn-cache
Expand Down
10 changes: 5 additions & 5 deletions .travis.yml
@@ -1,14 +1,12 @@
git:
depth: 10
depth: 5
sudo: false
language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
# We test the latest version on circleci
- '9'
- '10'
- '8'
- '6'

Expand All @@ -20,7 +18,9 @@ env:
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash

install: yarn --ignore-engines
install:
# the `make test-ci` script runs this command already
- if [ "$JOB" != "test" ]; then yarn install; fi

before_script:
- 'if [ "$JOB" = "babel-parser-flow-tests" ]; then make bootstrap-flow; fi'
Expand Down

0 comments on commit 6e39b58

Please sign in to comment.