Skip to content

Commit 729dce4

Browse files
committed
feat: add debugging steps to CI workflow for live-view package
- Introduced a debug step to list contents of the live-view package and the repository root before installation. - Added a check for the presence of pnpm-lock.yaml, terminating the CI if the file is missing, to ensure proper dependency management.
1 parent e256565 commit 729dce4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test-live-view.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,13 @@ jobs:
2424
uses: actions/setup-node@v4
2525
with:
2626
node-version: "20"
27-
cache: "npm"
27+
cache: "pnpm"
2828
cache-dependency-path: packages/live-view/pnpm-lock.yaml
2929

3030
- name: Install pnpm
3131
uses: pnpm/action-setup@v4
3232
with:
3333
version: 8
34-
3534
- name: Install dependencies
3635
run: |
3736
cd packages/live-view
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
onlyBuiltDependencies:
2+
- esbuild

0 commit comments

Comments
 (0)