Skip to content

Commit

Permalink
Specify node 8.12.x so correct version is used on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
luketurner committed Dec 1, 2019
1 parent 2aebb48 commit 7cd20e7
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ jobs:

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]
node-version: [8.12.x, 10.x, 12.x]
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: run tests
run: |
npm ci
npm test
env:
CI: true
NODE_ENV: ci
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: run tests
run: |
npm ci
npm test
env:
CI: true
NODE_ENV: ci

0 comments on commit 7cd20e7

Please sign in to comment.