Skip to content

Commit 802f86f

Browse files
author
Vishal Shingala
committed
Removed node lts from pipeline and added v14 and v16 manually
1 parent ab0436d commit 802f86f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ node_js:
44
- "8"
55
- "10"
66
- "12"
7-
- "lts/*"
7+
- "14"
8+
- "16"

test/system/travis-yml.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ describe('travis.yml', function () {
2525
describe('strucure', function () {
2626
it('language must be set to node', function () {
2727
expect(travisYAML.language).to.be('node_js');
28-
expect(travisYAML.node_js).to.eql(['8', '10', '12', 'lts/*']);
28+
expect(travisYAML.node_js).to.eql(['8', '10', '12', '14', '16']);
2929
});
3030
});
3131
});

0 commit comments

Comments
 (0)