Skip to content

Commit 3ff85a5

Browse files
committed
Attempt to install quarto-cli in test workflow
1 parent 1a3b90f commit 3ff85a5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
sudo apt-get -y update
2626
sudo apt-get -y install --fix-missing xvfb
2727
28+
- uses: quarto-dev/quarto-actions/setup@v2
29+
2830
- name: Build vscode extension
2931
run: |
3032
cd apps/vscode

apps/vscode/src/lsp/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export async function activateLsp(
155155
handler.dispose();
156156
resolve(client);
157157
} else if (e.newState === State.Stopped) {
158-
reject(new Error("Failed to start Quarto LSP Server"));
158+
reject(new Error("Failed to start Quarto LSP Server" + JSON.stringify(e) + JSON.stringify(client)));
159159
}
160160
});
161161

0 commit comments

Comments
 (0)