Skip to content

Commit d89d55d

Browse files
committed
chore(release): 0.3.11
- Add --no-git-checks to publish workflow - Integrate Codecov Test Analytics
1 parent 1bff7bb commit d89d55d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ jobs:
4848
files: ./coverage/lcov.info # Specify LCOV file path
4949
fail_ci_if_error: true # Optional: fail CI if upload error
5050

51+
52+
- name: Upload test results to Codecov
53+
if: ${{ !cancelled() }}
54+
uses: codecov/test-results-action@v1
55+
with:
56+
token: ${{ secrets.CODECOV_TOKEN }}
57+
# No file specified, action defaults to common patterns like test-report.junit.xml
5158
- name: Upload coverage reports
5259
uses: actions/upload-artifact@v4.4.0
5360
with:
@@ -105,7 +112,7 @@ jobs:
105112

106113
# --- Publish to NPM ---
107114
- name: Publish to npm
108-
run: pnpm publish --access public
115+
run: pnpm publish --access public --no-git-checks
109116
env:
110117
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
111118

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.3.11](https://github.com/sylphlab/pdf-reader-mcp/compare/v0.3.10...v0.3.11) (2025-04-07)
6+
57
### [0.3.10](https://github.com/sylphlab/pdf-reader-mcp/compare/v1.0.0...v0.3.10) (2025-04-07)
68

79
### Bug Fixes

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sylphlab/pdf-reader-mcp",
3-
"version": "0.3.10",
3+
"version": "0.3.11",
44
"description": "An MCP server providing tools to read PDF files.",
55
"type": "module",
66
"bin": {
@@ -45,7 +45,7 @@
4545
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
4646
"test": "vitest run",
4747
"test:watch": "vitest watch",
48-
"test:cov": "vitest run --coverage",
48+
"test:cov": "vitest run --coverage --reporter=junit --outputFile=test-report.junit.xml",
4949
"lint": "eslint . --ext .ts,.tsx,.js,.cjs --cache",
5050
"lint:fix": "eslint . --ext .ts,.tsx,.js,.cjs --fix --cache",
5151
"format": "prettier --write . --cache",

0 commit comments

Comments
 (0)