File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ${{ matrix.os }}
8
8
strategy :
9
9
matrix :
10
- os : [macOS-latest, ubuntu-20.04 , windows-latest]
10
+ os : [macOS-latest, ubuntu-latest , windows-latest]
11
11
steps :
12
12
- uses : actions/checkout@v1
13
13
- uses : actions/setup-node@v1
@@ -24,13 +24,13 @@ jobs:
24
24
- name : Check
25
25
run : npm run lint
26
26
- name : Test Non-Linux
27
- if : matrix.os != 'ubuntu-20.04 '
27
+ if : matrix.os != 'ubuntu-latest '
28
28
run : npm test --silent
29
29
- name : Test Linux
30
- if : matrix.os == 'ubuntu-20.04 '
30
+ if : matrix.os == 'ubuntu-latest '
31
31
run : xvfb-run --auto-servernum npm test --silent
32
32
- name : Upload artifact
33
- if : matrix.os == 'ubuntu-20.04 '
33
+ if : matrix.os == 'ubuntu-latest '
34
34
uses : actions/upload-artifact@v4
35
35
with :
36
36
name : vscode-tlaplus-ci.vsix
You can’t perform that action at this time.
0 commit comments