Skip to content

Commit

Permalink
test node in all current versions (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd authored and Danny McCormick committed Aug 12, 2019
1 parent a6908c2 commit c8c75ef
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ci/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,16 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
version: 10.x
version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
Expand Down

0 comments on commit c8c75ef

Please sign in to comment.