File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build :
12
- runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ os :
15
+ - ubuntu-latest
16
+ - macos-latest
17
+ - windows-latest
18
+ vscodeVersion :
19
+ - 1.56.0
20
+ - stable
21
+ runs-on : ${{ matrix.os }}
13
22
name : Build
14
23
steps :
15
24
- uses : actions/checkout@v3
40
49
npm test
41
50
env :
42
51
DISPLAY : ' :99.0'
52
+ VSCODE_VERSION : ${{ matrix.vscodeVersion }}
43
53
44
54
publish :
45
55
name : Publish
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export const config: Options.Testrunner = {
17
17
capabilities : [
18
18
{
19
19
browserName : 'vscode' ,
20
- browserVersion : '1.71 .0' , // "insiders" or "stable" for latest VSCode version
20
+ browserVersion : process . env . VSCODE_VERSION || '1.56 .0' , // "insiders" or "stable" for latest VSCode version
21
21
// @ts -ignore
22
22
'wdio:vscodeOptions' : {
23
23
extensionPath : __dirname ,
You can’t perform that action at this time.
0 commit comments