Skip to content

Commit 4918962

Browse files
committed
build: add v14 to the test matrix
PR-URL: #361 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent c86eb43 commit 4918962

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/push.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ jobs:
1919
- version: 10.x
2020
- version: 12.x
2121
- version: 14.x
22+
- version: 15.x
2223
mirror: https://nodejs.org/download/nightly
23-
- version: 14.x
24+
- version: 15.x
2425
mirror: https://nodejs.org/download/v8-canary
2526
os: [ubuntu-latest, macos-latest]
2627
steps:
@@ -40,19 +41,19 @@ jobs:
4041
npm install --llnode_build_addon=true --llnode_coverage=true
4142
- name: run tests
4243
run: TEST_LLDB_BINARY=`which lldb-3.9` npm run nyc-test-all
43-
if: matrix.node.version != '14.x'
44+
if: matrix.node.version != '15.x'
4445
- name: run tests (nightly)
4546
run: TEST_LLDB_BINARY=`which lldb-3.9` npm run nyc-test-all
46-
if: matrix.node.version == '14.x'
47+
if: matrix.node.version == '15.x'
4748
continue-on-error: true
4849
- name: prepare coverage
49-
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '14.x'
50+
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '15.x'
5051
run: |
5152
npm run coverage
5253
cat ./coverage-js.info > ./coverage.info
5354
cat ./coverage-cc.info >> ./coverage.info
5455
- name: coveralls
55-
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '14.x'
56+
if: matrix.os == 'ubuntu-latest' && matrix.node.version != '15.x'
5657
uses: coverallsapp/github-action@master
5758
with:
5859
path-to-lcov: ./coverage.info

0 commit comments

Comments
 (0)