Skip to content

Commit a7af6ce

Browse files
ChristianMurphywooorm
authored andcommitted
Refactor CI version
Resolves ``` Input 'version' has been deprecated with message: The version property will not be supported after October 1, 2019. Use node-version instead ```
1 parent af821ce commit a7af6ce

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ on:
66
branches: [master]
77
jobs:
88
build-and-test:
9-
name: '${{ matrix.platform }}: node.js ${{ matrix.nodejs-version }}'
9+
name: '${{ matrix.platform }}: node.js ${{ matrix.node-version }}'
1010
strategy:
1111
matrix:
1212
platform: [ubuntu-latest, windows-latest, macos-latest]
13-
nodejs-version: [10, 12]
13+
node-version: [10, 12]
1414
runs-on: ${{ matrix.platform }}
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@master
1818
- name: Set up Node.js
1919
uses: actions/setup-node@master
2020
with:
21-
version: ${{ matrix.nodejs-version }}
21+
node-version: ${{ matrix.node-version }}
2222
- name: Build and test
2323
run: |
2424
npm install

0 commit comments

Comments
 (0)