-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: upload coverage right after running unit tests
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,15 +36,15 @@ jobs: | |
- name: "unit(test): perform unit test checks" | ||
run: npm test | ||
|
||
- name: "build: package code for distribution" | ||
run: npm run build | ||
|
||
- name: "unit(test): upload coverage to CodeCov" | ||
uses: codecov/[email protected] | ||
with: | ||
directory: ./coverage | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
- name: "build: package code for distribution" | ||
run: npm run build | ||
|
||
- name: "pretest(inputs): save the push event trigger commit URL" | ||
if: "contains(github.event_name, 'push')" | ||
run: | | ||
|