File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
prepare :
10
10
name : Prepare
11
- runs-on : ubuntu-latest
11
+ runs-on : ${{ matrix.os }}
12
12
outputs :
13
13
YARN_CACHE_DIR : ${{ steps.yarn-cache-dir.outputs.YARN_CACHE_DIR }}
14
14
YARN_VERSION : ${{ steps.yarn-version.outputs.YARN_VERSION }}
15
15
strategy :
16
16
matrix :
17
17
node-version : [16.x, 18.x, 20.x]
18
+ os : [ubuntu-latest, windows-latest]
18
19
steps :
19
20
- uses : actions/checkout@v3
20
21
- name : Use Node.js ${{ matrix.node-version }}
@@ -98,12 +99,13 @@ jobs:
98
99
fi
99
100
test :
100
101
name : Test
101
- runs-on : ubuntu-latest
102
+ runs-on : ${{ matrix.os }}
102
103
needs :
103
104
- prepare
104
105
strategy :
105
106
matrix :
106
107
node-version : [16.x, 18.x, 20.x]
108
+ os : [ubuntu-latest, windows-latest]
107
109
steps :
108
110
- uses : actions/checkout@v3
109
111
- name : Use Node.js ${{ matrix.node-version }}
You can’t perform that action at this time.
0 commit comments