We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b99ce21 commit 6eb51d1Copy full SHA for 6eb51d1
.github/workflows/nodejs.yml
@@ -4,22 +4,21 @@ on:
4
pull_request:
5
branches:
6
- master
7
-
8
jobs:
9
build:
10
11
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
12
13
strategy:
+ fail-fast: false
14
matrix:
15
- node-version: [8.x, 10.x, 12.x]
+ os: [ubuntu-latest, windows-latest, macos-latest]
16
17
steps:
18
- uses: actions/checkout@v1
19
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js 12.x
20
uses: actions/setup-node@v1
21
with:
22
- node-version: ${{ matrix.node-version }}
+ node-version: 12.x
23
- name: npm install, build, and test
24
run: |
25
npm install
0 commit comments