Skip to content

Commit eeee03c

Browse files
committed
Use runner.os instead of custom matrix property
1 parent a5f98d8 commit eeee03c

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,44 +27,35 @@ jobs:
2727
# on Linux/Mac/Windows (Oldest)
2828
- node: 18
2929
os: ubuntu-22.04
30-
os-name: Linux
3130
- node: 18
3231
os: macos-14
33-
os-name: Mac
3432
- node: 18
3533
os: windows-2022
36-
os-name: Windows
3734

3835
# Node LTS (All Active & Maintenance)
3936
# on Linux (Latest)
4037
- node: 20
4138
os: ubuntu-24.04
42-
os-name: Linux
4339
- node: 22
4440
os: ubuntu-24.04
45-
os-name: Linux
4641
- node: 24
4742
os: ubuntu-24.04
48-
os-name: Linux
4943

5044
# Node Current
5145
# on Linux/Mac/Windows (Latest)
5246
- node: 25
5347
os: ubuntu-24.04
54-
os-name: Linux
5548
- node: 25
5649
os: macos-26
57-
os-name: Mac
5850
- node: 25
5951
os: windows-2025
60-
os-name: Windows
6152

6253
# Allow all matrix configurations to complete, instead of cancelling as
6354
# soon as one fails. Useful because we often have different kinds of
6455
# failures depending on the OS.
6556
fail-fast: false
6657

67-
name: 'Node ${{ matrix.node}} / ${{ matrix.os-name }}'
58+
name: 'Node ${{ matrix.node}} / ${{ runner.os }}'
6859
# Sometimes windows is far slower than the other OSs. Give it enough
6960
# time to complete if it's going to.
7061
timeout-minutes: 40

0 commit comments

Comments
 (0)