Skip to content

Commit

Permalink
build: add v14 to the test matrix
Browse files Browse the repository at this point in the history
PR-URL: #361
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
mmarchini committed Apr 27, 2020
1 parent c86eb43 commit 4918962
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
- version: 10.x
- version: 12.x
- version: 14.x
- version: 15.x
mirror: https://nodejs.org/download/nightly
- version: 14.x
- version: 15.x
mirror: https://nodejs.org/download/v8-canary
os: [ubuntu-latest, macos-latest]
steps:
Expand All @@ -40,19 +41,19 @@ jobs:
npm install --llnode_build_addon=true --llnode_coverage=true
- name: run tests
run: TEST_LLDB_BINARY=`which lldb-3.9` npm run nyc-test-all
if: matrix.node.version != '14.x'
if: matrix.node.version != '15.x'
- name: run tests (nightly)
run: TEST_LLDB_BINARY=`which lldb-3.9` npm run nyc-test-all
if: matrix.node.version == '14.x'
if: matrix.node.version == '15.x'
continue-on-error: true
- name: prepare coverage
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '14.x'
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '15.x'
run: |
npm run coverage
cat ./coverage-js.info > ./coverage.info
cat ./coverage-cc.info >> ./coverage.info
- name: coveralls
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '14.x'
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '15.x'
uses: coverallsapp/github-action@master
with:
path-to-lcov: ./coverage.info
Expand Down

0 comments on commit 4918962

Please sign in to comment.