Skip to content

Commit

Permalink
Merge pull request #2210 from mroderick/drop-node-8
Browse files Browse the repository at this point in the history
Drop Node 8 support
  • Loading branch information
fatso83 authored Feb 18, 2020
2 parents 7498f1a + 7e26306 commit 3a5e5c7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,27 +48,27 @@ jobs:
name: Lint
command: npm run lint

node-8:
node-10:
docker:
- image: circleci/node:8
- image: circleci/node:10
steps:
- *attach-step
- run:
name: Test
command: npm run test-node

node-10:
node-12:
docker:
- image: circleci/node:10
- image: circleci/node:12
steps:
- *attach-step
- run:
name: Test
command: npm run test-node

node-12:
node-13:
docker:
- image: circleci/node:12
- image: circleci/node:13
steps:
- *attach-step
- run:
Expand Down Expand Up @@ -114,22 +114,22 @@ workflows:
- lint:
requires:
- install-dependencies
- node-8:
requires:
- install-dependencies
- node-10:
requires:
- install-dependencies
- node-12:
requires:
- install-dependencies
- node-13:
requires:
- install-dependencies
- integration-tests:
requires:
- install-dependencies
- lint
- node-8
- node-10
- node-12
- node-13
- saucelabs:
context: SAUCE_LABS
requires:
Expand Down

0 comments on commit 3a5e5c7

Please sign in to comment.