Skip to content

Commit a15681d

Browse files
committed
ci: remove codecov, use text-only coverage output
1 parent 79b376d commit a15681d

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,3 @@ jobs:
6060

6161
- name: Run tests with coverage
6262
run: npm run test:coverage
63-
64-
- name: Upload coverage reports
65-
uses: codecov/codecov-action@v4
66-
with:
67-
files: ./coverage/coverage-final.json
68-
fail_ci_if_error: false
69-
env:
70-
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

vitest.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
include: ["tests/**/*.test.ts"],
88
coverage: {
99
provider: "v8",
10-
reporter: ["text", "html", "json"],
10+
reporter: ["text", "text-summary"],
1111
include: ["src/**/*.ts"],
1212
exclude: ["src/native/index.ts"],
1313
},

0 commit comments

Comments
 (0)