Skip to content

Commit f227496

Browse files
rajbosCopilot
andcommitted
fix(ci): correct working-directory for extension npm ci step
The 'Install extension dependencies' step was using working-directory: . (repo root) which has no package.json. Changed to vscode-extension/ where the actual package.json lives. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent fe96fa8 commit f227496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/cli-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Install extension dependencies
6060
run: npm ci
61-
working-directory: .
61+
working-directory: vscode-extension
6262

6363
- name: Install CLI dependencies
6464
run: npm ci

0 commit comments

Comments
 (0)