Skip to content

Commit dcccb09

Browse files
committed
Drop support for Node 6
1 parent 37856d3 commit dcccb09

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.circleci/config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defaults: &defaults
99
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
1010
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
1111
sudo apt-get update
12-
sudo apt-get install --no-install-recommends yarn=1.5.1-1
12+
sudo apt-get install --no-install-recommends yarn=1.21.1-1
1313
- checkout
1414
- restore_cache:
1515
keys:
@@ -40,17 +40,17 @@ defaults: &defaults
4040

4141
version: 2
4242
jobs:
43-
"node-6":
43+
node-8:
4444
<<: *defaults
4545
docker:
46-
- image: circleci/node:6
47-
"node-8":
46+
- image: circleci/node:8
47+
node-10:
4848
<<: *defaults
4949
docker:
50-
- image: circleci/node:8
50+
- image: circleci/node:10
5151
workflows:
5252
version: 2
5353
build:
5454
jobs:
55-
- "node-6"
56-
- "node-8"
55+
- node-8
56+
- node-10

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"Christophe Bonello <christophe.bonello@zentrick.com>"
1111
],
1212
"engines": {
13-
"node": ">=6",
13+
"node": ">=8",
1414
"yarn": "*"
1515
},
1616
"license": "MIT",

0 commit comments

Comments
 (0)