Skip to content

Commit 980833f

Browse files
committed
Attempt to build repo in CI
1 parent ec41257 commit 980833f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ jobs:
2727
2828
- uses: quarto-dev/quarto-actions/setup@v2
2929

30-
- name: Build vscode extension
30+
- name: Build quarto repo
3131
run: |
32-
cd apps/vscode
3332
yarn install
3433
yarn run build
3534

apps/vscode/src/test/quartoDoc.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ suite("Quarto basics", function () {
2424
// Note: the following tests may be flaky. They rely on waiting estimated amounts of time for commands to complete.
2525
test("Can edit in visual mode", async function () {
2626
// don't run this in CI for now because we haven't figured out how to get the LSP to start
27-
if (process.env['CI']) this.skip();
27+
// if (process.env['CI']) this.skip();
2828

2929
const doc = await vscode.workspace.openTextDocument(exampleWorkspaceOutPath("hello.qmd"));
3030
const editor = await vscode.window.showTextDocument(doc);

0 commit comments

Comments
 (0)