Skip to content

Commit

Permalink
Some dependencies does noe support node 6, so I've bumped the minimum…
Browse files Browse the repository at this point in the history
… version to 8.17 and updated CircleCI config.yml
  • Loading branch information
starak committed Jan 7, 2021
1 parent 2beac58 commit 334fb5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
jobs:
build:
docker: ## Should be node version 6.4 but it does not exist as a cicleci image
- image: circleci/node:6.10
docker:
- image: circleci/node:8.17
steps:
- checkout
- run: echo "Starting..."
Expand All @@ -18,4 +18,4 @@ jobs:
- run:
name: test
command: npm test
- run: echo "Done!"
- run: echo "Done!"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"examples": "node examples/index || true"
},
"engines": {
"node": ">=6.4.0"
"node": ">=8.17.0"
},
"author": {
"name": "Ståle Raknes",
Expand Down

0 comments on commit 334fb5d

Please sign in to comment.