From 4fc92020b86cc6ecca54716d6f19cac2da03eda5 Mon Sep 17 00:00:00 2001 From: rjawesome Date: Mon, 12 Aug 2024 11:22:41 -0700 Subject: [PATCH] fix: pnpm uses packages in topological order --- .github/workflows/test_ws_codecov.yml | 2 +- package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_ws_codecov.yml b/.github/workflows/test_ws_codecov.yml index 228082d..4c27281 100644 --- a/.github/workflows/test_ws_codecov.yml +++ b/.github/workflows/test_ws_codecov.yml @@ -32,7 +32,7 @@ jobs: run: | pnpm run clone pnpm run git checkout ${{ steps.branch-name.outputs.current_branch }} - pnpm i || pnpm i + pnpm i pnpm --filter api-response-transform test-cov - name: Send coverage report to codecov for visualization diff --git a/package.json b/package.json index 7ebc288..6b11b24 100644 --- a/package.json +++ b/package.json @@ -58,9 +58,9 @@ "typescript": "^5.2.2" }, "dependencies": { - "@biothings-explorer/utils": "workspace:../utils", - "@biothings-explorer/types": "workspace:../types", - "@biothings-explorer/smartapi-kg": "workspace:../smartapi-kg", + "@biothings-explorer/utils": "workspace:*", + "@biothings-explorer/types": "workspace:*", + "@biothings-explorer/smartapi-kg": "workspace:*", "@commitlint/cli": "^17.8.1", "@commitlint/config-conventional": "^11.0.0", "async": "^3.2.4",