Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ jobs:
run: npm install -g pnpm
- run: pnpm install
- run: pnpm run build
- run: pnpm test
- run: pnpm test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage/coverage-final.json
Comment thread
pablofullana marked this conversation as resolved.
Outdated
flags: unittests
name: codecov-umbrella
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# uniswap-dev-kit
[![CI](https://github.com/BootNodeDev/uni-dev-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/BootNodeDev/uni-dev-kit/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/BootNodeDev/uni-dev-kit/branch/main/graph/badge.svg)](https://codecov.io/gh/BootNodeDev/uni-dev-kit)
[![Release](https://github.com/BootNodeDev/uni-dev-kit/actions/workflows/release.yml/badge.svg)](https://github.com/BootNodeDev/uni-dev-kit/actions/workflows/release.yml)
[![Docs](https://img.shields.io/badge/docs-typedoc-blue)](https://bootnodedev.github.io/uni-dev-kit)
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/BootNodeDev/uni-dev-kit)
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"lint": "biome check",
"lint:fix": "biome check --write",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"prepare": "husky",
Expand Down Expand Up @@ -67,6 +68,7 @@
"@types/node": "^24.3.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"gh-pages": "^6.3.0",
"husky": "^9.1.7",
Expand Down
Loading
Loading