File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed
Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1010
1111jobs :
1212 install :
13- # The type of runner that the job will run on
14- runs-on : ${{ matrix.os }}
15-
1613 # The matrix of OS and Node.js versions
1714 strategy :
1815 matrix :
1916 os : [ ubuntu-latest, macos-latest, windows-latest ]
2017 node : [ 14, 16, 18, 'current' ]
2118
22- steps :
19+ # The type of runner that the job will run on
20+ runs-on : ${{ matrix.os }}
2321
22+ steps :
2423 - name : " Use specified Node.js version"
2524 uses : actions/setup-node@v3
2625 with :
Original file line number Diff line number Diff line change @@ -6,14 +6,14 @@ on: [pull_request]
66
77jobs :
88 test :
9- # The type of runner that the job will run on
10- runs-on : ${{ matrix.os }}
11-
129 # The matrix of OS and Node.js versions
1310 strategy :
1411 matrix :
1512 os : [ ubuntu-latest, macos-latest, windows-latest ]
1613
14+ # The type of runner that the job will run on
15+ runs-on : ${{ matrix.os }}
16+
1717 steps :
1818 - name : " Checkout repository"
1919 uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments