Skip to content

Commit

Permalink
ci: remove node 4, loosen node image versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gipphe committed Aug 3, 2018
1 parent ecfb019 commit 034ddc6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 22 deletions.
25 changes: 4 additions & 21 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: 2
jobs:
node8:
docker:
- image: circleci/node:8.11
- image: circleci/node:8
working_directory: ~/repo
steps:
- checkout
Expand All @@ -23,24 +23,7 @@ jobs:

node6:
docker:
- image: circleci/node:6.11.4
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn test

node4:
docker:
- image: circleci/node:4.8.4
- image: circleci/node:6
working_directory: ~/repo
steps:
- checkout
Expand All @@ -57,7 +40,7 @@ jobs:

lint:
docker:
- image: circleci/node:8.11
- image: circleci/node:8
working_directory: ~/repo
steps:
- checkout
Expand All @@ -74,7 +57,7 @@ jobs:

coveralls:
docker:
- image: circleci/node:8.11
- image: circleci/node:8
working_directory: ~/repo
steps:
- checkout
Expand Down
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.js text eol=lf
*.md text eol=lf
yarn.lock text eol=lf
*.yml text eol=lf
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ yarn lint

## Compatibility

This package is compatible all the way down to Node 4 and IE9. It might be
This package is compatible all the way down to Node 6 and IE9. It might be
compatible with older versions of Node/IE, but such guarantees cannot be made.

## Versioning
Expand Down

0 comments on commit 034ddc6

Please sign in to comment.