Skip to content

Commit 455cbd3

Browse files
committed
fix matrix in ci workflow
1 parent 970bf34 commit 455cbd3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@ on:
1212
jobs:
1313
build:
1414

15-
runs-on: [ubuntu-latest, windows-latest]
16-
1715
strategy:
1816
matrix:
1917
node-version: [12.x, 14.x, 16.x, 18.x]
18+
os: [ubuntu-latest, windows-latest]
2019
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2120

21+
runs-on: ${{ matrix.os }}
22+
2223
steps:
2324
- uses: actions/checkout@v3
2425
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)