13
13
14
14
jobs :
15
15
local-cache :
16
- runs-on : ${{ matrix.operating-system }}
16
+ runs-on : ${{ matrix.os }}
17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
- operating-system : [ubuntu-latest, windows-latest, macos-latest]
20
+ os : [ubuntu-latest, windows-latest, macos-latest]
21
21
node-version : [10, 12, 14]
22
22
steps :
23
23
- uses : actions/checkout@v2
@@ -30,11 +30,11 @@ jobs:
30
30
shell : bash
31
31
32
32
manifest :
33
- runs-on : ${{ matrix.operating-system }}
33
+ runs-on : ${{ matrix.os }}
34
34
strategy :
35
35
fail-fast : false
36
36
matrix :
37
- operating-system : [ubuntu-latest, windows-latest, macos-latest]
37
+ os : [ubuntu-latest, windows-latest, macos-latest]
38
38
node-version : [10.15, 12.16.0, 14.2.0]
39
39
steps :
40
40
- uses : actions/checkout@v2
@@ -47,11 +47,11 @@ jobs:
47
47
shell : bash
48
48
49
49
check-latest :
50
- runs-on : ${{ matrix.operating-system }}
50
+ runs-on : ${{ matrix.os }}
51
51
strategy :
52
52
fail-fast : false
53
53
matrix :
54
- operating-system : [ubuntu-latest, windows-latest, macos-latest]
54
+ os : [ubuntu-latest, windows-latest, macos-latest]
55
55
node-version : [10, 11, 12, 14]
56
56
steps :
57
57
- uses : actions/checkout@v2
@@ -65,11 +65,11 @@ jobs:
65
65
shell : bash
66
66
67
67
node-dist :
68
- runs-on : ${{ matrix.operating-system }}
68
+ runs-on : ${{ matrix.os }}
69
69
strategy :
70
70
fail-fast : false
71
71
matrix :
72
- operating-system : [ubuntu-latest, windows-latest, macos-latest]
72
+ os : [ubuntu-latest, windows-latest, macos-latest]
73
73
node-version : [11, 13]
74
74
steps :
75
75
- uses : actions/checkout@v2
@@ -82,11 +82,11 @@ jobs:
82
82
shell : bash
83
83
84
84
old-versions :
85
- runs-on : ${{ matrix.operating-system }}
85
+ runs-on : ${{ matrix.os }}
86
86
strategy :
87
87
fail-fast : false
88
88
matrix :
89
- operating-system : [ubuntu-latest, windows-latest, macos-latest]
89
+ os : [ubuntu-latest, windows-latest, macos-latest]
90
90
steps :
91
91
- uses : actions/checkout@v2
92
92
# test old versions which didn't have npm and layout different
0 commit comments