Fix other node-version to node_version typo

This commit is contained in:
Dan Mindru 2019-09-03 11:47:54 +02:00 committed by GitHub
parent 265f955af5
commit c177e1f24f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -9,15 +9,15 @@ jobs:
strategy:
matrix:
node_version: [8, 10, 12]
node_version: [9, 10, 11, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node_version: ${{ matrix.node_version }}
- name: npm install & test
run: |