Skip to content
This repository was archived by the owner on Dec 10, 2020. It is now read-only.

Commit 7bb6d42

Browse files
authored
Merge pull request #163 from ethereumjs/switch-coveralls-to-codecov
Switch to Codecov
2 parents 4cbe78e + b5b5577 commit 7bb6d42

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- run: npm run lint
2424
- run: npm run build
2525
- run: npm run coverage
26-
- uses: coverallsapp/github-action@master
26+
- uses: codecov/codecov-action@v1
2727
with:
28-
github-token: ${{ secrets.GITHUB_TOKEN }}
28+
file: ./coverage/lcov.info
2929
test-browser:
3030
runs-on: ubuntu-latest
3131
steps:

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# SYNOPSIS
22

3+
[![NPM Status][npm-badge]][npm-link]
34
[![Actions Status][actions-badge]][actions-link]
45
[![Coverage Status][coverage-badge]][coverage-link]
5-
[![JavaScript Style Guide][style-badge]][style-link]
66
[![Discord][discord-badge]][discord-link]
77

88
This is the work repository for the EthereumJS client project targeting both Node.js and the browser as a platform.
@@ -331,13 +331,11 @@ See our organizational [documentation](https://ethereumjs.readthedocs.io) for an
331331

332332
If you want to join for work or do improvements on the libraries have a look at our [contribution guidelines](https://ethereumjs.readthedocs.io/en/latest/contributing.html).
333333

334+
[npm-badge]: https://img.shields.io/npm/v/ethereumjs-client.svg
335+
[npm-link]: https://www.npmjs.org/package/ethereumjs-client
334336
[actions-badge]: https://github.com/ethereumjs/ethereumjs-client/workflows/Build/badge.svg
335337
[actions-link]: https://github.com/ethereumjs/ethereumjs-client/actions
336-
[coverage-badge]: https://img.shields.io/coveralls/ethereumjs/ethereumjs-client.svg
337-
[coverage-link]: https://coveralls.io/r/ethereumjs/ethereumjs-client
338+
[coverage-badge]: https://codecov.io/gh/ethereumjs/ethereumjs-client/branch/master/graph/badge.svg
339+
[coverage-link]: https://codecov.io/gh/ethereumjs/ethereumjs-client
338340
[discord-badge]: https://img.shields.io/static/v1?logo=discord&label=discord&message=Join&color=blue
339341
[discord-link]: https://discord.gg/TNwARpR
340-
[style-badge]: https://img.shields.io/badge/code_style-standard-brightgreen.svg
341-
[style-link]: https://standardjs.com
342-
[discord-badge]: https://img.shields.io/static/v1?logo=discord&label=discord&message=Join&color=blue
343-
[discord-link]: https://discord.gg/TNwARpR

codecov.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
target: auto
6+
threshold: 2%
7+
base: auto

0 commit comments

Comments
 (0)