Skip to content

Commit 6eb51d1

Browse files
committed
Update test runs
1 parent b99ce21 commit 6eb51d1

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/nodejs.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,21 @@ on:
44
pull_request:
55
branches:
66
- master
7-
87
jobs:
98
build:
10-
11-
runs-on: ubuntu-latest
9+
runs-on: ${{ matrix.os }}
1210

1311
strategy:
12+
fail-fast: false
1413
matrix:
15-
node-version: [8.x, 10.x, 12.x]
14+
os: [ubuntu-latest, windows-latest, macos-latest]
1615

1716
steps:
1817
- uses: actions/checkout@v1
19-
- name: Use Node.js ${{ matrix.node-version }}
18+
- name: Use Node.js 12.x
2019
uses: actions/setup-node@v1
2120
with:
22-
node-version: ${{ matrix.node-version }}
21+
node-version: 12.x
2322
- name: npm install, build, and test
2423
run: |
2524
npm install

0 commit comments

Comments
 (0)