Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Drop Node 8
And run tests in Node 14, the current LTS release
  • Loading branch information
mroderick committed Jan 26, 2021
1 parent 7aa37d2 commit 70f48d0
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .circleci/config.yml
Expand Up @@ -58,15 +58,6 @@ jobs:
name: prettier
command: npm run prettier:check

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

node-10:
docker:
- image: circleci/node:10
Expand All @@ -88,6 +79,15 @@ jobs:
name: Upload coverage report
command: bash <(curl -s https://codecov.io/bash) -F unit -s coverage/lcov.info

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

workflows:
version: 2
commons-circle-ci:
Expand All @@ -99,12 +99,12 @@ workflows:
- prettier:
requires:
- install-dependencies
- node-8:
requires:
- install-dependencies
- node-10:
requires:
- install-dependencies
- node-12:
requires:
- install-dependencies
- node-14:
requires:
- install-dependencies

0 comments on commit 70f48d0

Please sign in to comment.