Skip to content

Commit 0048a2c

Browse files
authored
web: fix pnpm-workspace.yaml (#4589)
## Motivation In #4577 I moved the npm packages around, but I forgot to update the pnpm workspace file. ## Proposal Update it with the new package paths. ## Test Plan Tested locally. ## Release Plan - Nothing to do / These changes follow the usual release cycle. ## Links - [reviewer checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
1 parent 70f179a commit 0048a2c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/web.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ jobs:
7474
- uses: jetli/[email protected]
7575
with:
7676
version: v0.13.1
77+
- uses: jetli/[email protected]
78+
with:
79+
version: 0.2.100
7780
- name: Install pnpm
7881
uses: pnpm/action-setup@v4
7982
with:
@@ -82,6 +85,7 @@ jobs:
8285
- name: Test the npm packages
8386
run: |
8487
cd web
88+
pnpm install
8589
pnpm -r run ci
8690
- name: Test `linera-views` on the Web
8791
run: |

web/pnpm-workspace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packages:
2-
- .
3-
- signer
2+
- '@linera/client'
3+
- '@linera/signer'

0 commit comments

Comments
 (0)