Upgrade minimum development Node version to v8 (#1861)

Node v6 will reach its end-of-life by April 2019.
This commit is contained in:
ylemkimon
2019-02-23 06:15:10 +09:00
committed by Erik Demaine
parent e016f4b940
commit 99892bb4a7
2 changed files with 4 additions and 4 deletions

View File

@@ -3,11 +3,11 @@ version: 2.1
executors:
firefox:
docker:
- image: circleci/node:6
- image: circleci/node:8
- image: selenium/standalone-firefox:2.48.2
chrome:
docker:
- image: circleci/node:6
- image: circleci/node:8
- image: selenium/standalone-chrome:2.48.2
environment:
# workaround for https://github.com/SeleniumHQ/docker-selenium/issues/87
@@ -74,7 +74,7 @@ commands:
jobs:
test:
docker:
- image: circleci/node:6
- image: circleci/node:8
steps:
- run:
name: Check whether the build is running on the main repository

View File

@@ -22,7 +22,7 @@ yarn global add katex
```
### Building from Source
To build you will need Git, Node.js 6.9 or later, and Yarn.
To build you will need Git, Node.js 8 or later, and Yarn.
Clone a copy of the GitHub source repository:
```bash