Change supported node version to the latest LTS

This commit is contained in:
Hannu Lyytikainen 2018-11-28 10:35:32 +02:00
parent 54154a40da
commit 17cbb5c7dd
2 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ version: 2
jobs:
format:
docker:
- image: circleci/node:8.11
- image: circleci/node:10.14
steps:
- checkout
- restore_cache:
@ -25,7 +25,7 @@ jobs:
command: yarn run format-ci
test:
docker:
- image: circleci/node:8.11
- image: circleci/node:10.14
steps:
- checkout
- restore_cache:
@ -48,7 +48,7 @@ jobs:
command: yarn run test-ci
build:
docker:
- image: circleci/node:8.11
- image: circleci/node:10.14
steps:
- checkout
- restore_cache:
@ -71,7 +71,7 @@ jobs:
command: yarn run build
audit:
docker:
- image: circleci/node:8.11
- image: circleci/node:10.14
steps:
- checkout
- restore_cache:

View file

@ -87,6 +87,6 @@
"proseWrap": "always"
},
"engines": {
"node": "8.11"
"node": "10.14"
}
}