Skip to content

Commit c816584

Browse files
pras0131Paras
andauthored
fix: use the correct command name for testing bundles (#1280)
* fix: use the correct command name for testing bundles * chore: change return type to pipe to see if more logs can be available --------- Co-authored-by: Paras <[email protected]>
1 parent f7ac957 commit c816584

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/lsp-ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
npm run package
4242
- name: Test bundles
4343
run: |
44-
npm run test:bundles --workspaces --if-present
44+
npm run test-bundles --workspaces --if-present
4545
- name: Attach bundles
4646
uses: actions/upload-artifact@v4
4747
with:
@@ -82,7 +82,7 @@ jobs:
8282
npm run package
8383
- name: Test bundles
8484
run: |
85-
npm run test:bundles --workspaces --if-present
85+
npm run test-bundles --workspaces --if-present
8686
- name: Attach bundles
8787
uses: actions/upload-artifact@v4
8888
with:

app/aws-lsp-codewhisperer-runtimes/scripts/test-bundles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function testBundle(bundlePath) {
88
let startupTimeout
99

1010
const serverProcess = spawn('node', [bundlePath, '--stdio'], {
11-
stdio: 'inherit',
11+
stdio: 'pipe',
1212
shell: true,
1313
})
1414

0 commit comments

Comments
 (0)