We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a3b90f commit 3ff85a5Copy full SHA for 3ff85a5
.github/workflows/test.yaml
@@ -25,6 +25,8 @@ jobs:
25
sudo apt-get -y update
26
sudo apt-get -y install --fix-missing xvfb
27
28
+ - uses: quarto-dev/quarto-actions/setup@v2
29
+
30
- name: Build vscode extension
31
run: |
32
cd apps/vscode
apps/vscode/src/lsp/client.ts
@@ -155,7 +155,7 @@ export async function activateLsp(
155
handler.dispose();
156
resolve(client);
157
} else if (e.newState === State.Stopped) {
158
- reject(new Error("Failed to start Quarto LSP Server"));
+ reject(new Error("Failed to start Quarto LSP Server" + JSON.stringify(e) + JSON.stringify(client)));
159
}
160
});
161
0 commit comments