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 6c7b595 commit 29a60b8Copy full SHA for 29a60b8
.github/workflows/nodejs.yml
@@ -6,19 +6,18 @@ on:
6
- master
7
jobs:
8
build:
9
-
10
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
11
12
strategy:
13
matrix:
14
- node-version: [8.x, 10.x, 12.x]
+ os: [ubuntu-latest, windows-latest, macos-latest]
15
16
steps:
17
- uses: actions/checkout@v1
18
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Use Node.js 12.x
19
uses: actions/setup-node@v1
20
with:
21
- node-version: ${{ matrix.node-version }}
+ node-version: 12.x
22
- name: npm install, build, and test
23
run: |
24
npm install
0 commit comments