Skip to content

Commit 9acd405

Browse files
authored
chore: migrate to codecov (#543)
# Description <!-- Please provide a general summary of your PR changes and link any related issues or other pull requests. --> # Testing <!-- Please provide details on how you tested this code. See below. - All pull requests must be tested (unit tests where possible with accompanying cassettes, or provide a screenshot of end-to-end testing when unit tests are not possible) - New features must get a new unit test - Bug fixes/refactors must re-record existing cassettes --> # Pull Request Type Please select the option(s) that are relevant to this PR. - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Improvement (fixing a typo, updating readme, renaming a variable name, etc)
1 parent a2c5d09 commit 9acd405

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ jobs:
6868
node-version: 24
6969
- run: just install install-styleguide build
7070
- run: EASYPOST_TEST_API_KEY=123 EASYPOST_PROD_API_KEY=123 just coverage
71-
- name: Coveralls
71+
- name: Coverage
7272
if: github.ref == 'refs/heads/master'
73-
uses: coverallsapp/github-action@master
73+
uses: codecov/codecov-action@v5
7474
with:
75-
github-token: ${{ secrets.GITHUB_TOKEN }}
75+
token: ${{ secrets.CODECOV_TOKEN }}
7676
docs:
7777
if: github.ref == 'refs/heads/master'
7878
runs-on: ubuntu-latest

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# EasyPost Node Client Library
22

33
[![CI](https://github.com/EasyPost/easypost-node/workflows/CI/badge.svg)](https://github.com/EasyPost/easypost-node/actions?query=workflow%3ACI)
4-
[![Coverage Status](https://coveralls.io/repos/github/EasyPost/easypost-node/badge.svg?branch=master)](https://coveralls.io/github/EasyPost/easypost-node?branch=master)
4+
[![codecov](https://codecov.io/gh/EasyPost/easypost-node/graph/badge.svg?token=RhFfmXPeDW)](https://codecov.io/gh/EasyPost/easypost-node)
55
[![npm version](https://badge.fury.io/js/%40easypost%2Fapi.svg)](https://badge.fury.io/js/%40easypost%2Fapi)
66

77
EasyPost, the simple shipping solution. You can sign up for an account at <https://easypost.com>.

audit-ci.jsonc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33
// Only fail the audit if there are critical vulnerabilities.
44
"critical": true,
55
// Can't update ESLint yet because we must support Node 16
6-
"allowlist": ["GHSA-p5wg-g6qr-c7cg", "GHSA-2g4f-4pwh-qvx6", "GHSA-3ppc-4f35-3m26"],
6+
"allowlist": [
7+
"GHSA-p5wg-g6qr-c7cg",
8+
"GHSA-2g4f-4pwh-qvx6",
9+
"GHSA-3ppc-4f35-3m26",
10+
"GHSA-mw96-cpmx-2vgc",
11+
],
712
}

0 commit comments

Comments
 (0)