Skip to content

Commit

Permalink
Drop support for Node 6
Browse files Browse the repository at this point in the history
  • Loading branch information
timdp committed Dec 16, 2019
1 parent 37856d3 commit dcccb09
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defaults: &defaults
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update
sudo apt-get install --no-install-recommends yarn=1.5.1-1
sudo apt-get install --no-install-recommends yarn=1.21.1-1
- checkout
- restore_cache:
keys:
Expand Down Expand Up @@ -40,17 +40,17 @@ defaults: &defaults

version: 2
jobs:
"node-6":
node-8:
<<: *defaults
docker:
- image: circleci/node:6
"node-8":
- image: circleci/node:8
node-10:
<<: *defaults
docker:
- image: circleci/node:8
- image: circleci/node:10
workflows:
version: 2
build:
jobs:
- "node-6"
- "node-8"
- node-8
- node-10
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"Christophe Bonello <christophe.bonello@zentrick.com>"
],
"engines": {
"node": ">=6",
"node": ">=8",
"yarn": "*"
},
"license": "MIT",
Expand Down

0 comments on commit dcccb09

Please sign in to comment.