Skip to content

Commit dad5ed3

Browse files
committed
Attempt to fix failing test workflow
1 parent 324935b commit dad5ed3

File tree

2 files changed

+10
-18
lines changed

2 files changed

+10
-18
lines changed

.github/workflows/build.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,13 @@ jobs:
4343
with:
4444
name: quarto-vscode-${{ github.sha }}
4545
path: ${{ steps.package_extension.outputs.vsixPath }}
46+
47+
- name: Update build environment and install XVFB
48+
run: |
49+
sudo apt-get -y update
50+
sudo apt-get -y install --fix-missing xvfb
51+
52+
- name: Compile and run tests
53+
run: |
54+
yarn install --immutable --immutable-cache --check-cache
55+
xvfb-run yarn test-vscode

.github/workflows/test.yaml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,3 @@ on:
1111
workflow_dispatch:
1212

1313
jobs:
14-
test-extension:
15-
runs-on: ubuntu-latest
16-
steps:
17-
- uses: actions/checkout@v4
18-
19-
- uses: actions/setup-node@v4
20-
with:
21-
node-version: latest
22-
23-
- name: Update build environment and install XVFB
24-
run: |
25-
sudo apt-get -y update
26-
sudo apt-get -y install --fix-missing xvfb
27-
28-
- name: Compile and run tests
29-
run: |
30-
yarn install --immutable --immutable-cache --check-cache
31-
xvfb-run yarn test-vscode

0 commit comments

Comments
 (0)