Skip to content
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.

Commit

Permalink
test - don't halt deploy on coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
neverendingqs committed Apr 12, 2020
1 parent 1af85ca commit 62082b4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ jobs:
steps:
- *attach_workspace
- run: npm test
- persist_to_workspace:
root: *workspace
paths:
- "*"

coverage:
executor: node
steps:
- *attach_workspace
- run: npm run coverage

deploy:
Expand All @@ -54,6 +63,9 @@ workflows:
- test:
requires:
- build
- coverage:
requires:
- test
- deploy:
context: npm-publish
requires:
Expand Down

0 comments on commit 62082b4

Please sign in to comment.