File tree Expand file tree Collapse file tree 2 files changed +20
-18
lines changed Expand file tree Collapse file tree 2 files changed +20
-18
lines changed Original file line number Diff line number Diff line change 43
43
with :
44
44
name : quarto-vscode-${{ github.sha }}
45
45
path : ${{ steps.package_extension.outputs.vsixPath }}
46
+
47
+ test-extension :
48
+ runs-on : ubuntu-latest
49
+ needs : package-extension
50
+ steps :
51
+ - uses : actions/checkout@v4
52
+
53
+ - uses : actions/setup-node@v4
54
+ with :
55
+ node-version : latest
56
+
57
+ - name : Update build environment and install XVFB
58
+ run : |
59
+ sudo apt-get -y update
60
+ sudo apt-get -y install --fix-missing xvfb
61
+
62
+ - name : Compile and run tests
63
+ run : |
64
+ yarn install --immutable --immutable-cache --check-cache
65
+ xvfb-run yarn test-vscode
Original file line number Diff line number Diff line change 11
11
workflow_dispatch :
12
12
13
13
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
You can’t perform that action at this time.
0 commit comments