Skip to content

Commit

Permalink
test(ci): update node versions
Browse files Browse the repository at this point in the history
Node v8.x is about to be EOL’d, and Node v13.x is available now.
  • Loading branch information
eventualbuddha committed Dec 28, 2019
1 parent e551272 commit 554476a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -28,10 +28,6 @@ aliases:

version: 2
jobs:
node-v8-latest:
docker:
- image: circleci/node:8
<<: *unit_test
node-v10-latest:
docker:
- image: circleci/node:10
Expand All @@ -44,6 +40,10 @@ jobs:
docker:
- image: circleci/node:12
<<: *unit_test
node-v13-latest:
docker:
- image: circleci/node:13
<<: *unit_test
deploy:
docker:
- image: circleci/node:latest
Expand All @@ -60,16 +60,16 @@ workflows:
version: 2
test-deploy:
jobs:
- node-v8-latest
- node-v10-latest
- node-v11-latest
- node-v12-latest
- node-v13-latest
- deploy:
requires:
- node-v8-latest
- node-v10-latest
- node-v11-latest
- node-v12-latest
- node-v13-latest
filters:
branches:
only: master

0 comments on commit 554476a

Please sign in to comment.