We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d17a6d8 commit 92aec4bCopy full SHA for 92aec4b
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
- os: [macOS-latest, ubuntu-20.04, windows-latest]
+ os: [macOS-latest, ubuntu-latest, windows-latest]
11
steps:
12
- uses: actions/checkout@v1
13
- uses: actions/setup-node@v1
@@ -24,13 +24,13 @@ jobs:
24
- name: Check
25
run: npm run lint
26
- name: Test Non-Linux
27
- if: matrix.os != 'ubuntu-20.04'
+ if: matrix.os != 'ubuntu-latest'
28
run: npm test --silent
29
- name: Test Linux
30
- if: matrix.os == 'ubuntu-20.04'
+ if: matrix.os == 'ubuntu-latest'
31
run: xvfb-run --auto-servernum npm test --silent
32
- name: Upload artifact
33
34
uses: actions/upload-artifact@v4
35
with:
36
name: vscode-tlaplus-ci.vsix
0 commit comments