Removed node lts from pipeline and added v14 and v16 manually

This commit is contained in:
Vishal Shingala
2022-11-09 18:28:00 +05:30
parent ab0436d43f
commit 802f86f148
2 changed files with 3 additions and 2 deletions

View File

@@ -4,4 +4,5 @@ node_js:
- "8"
- "10"
- "12"
- "lts/*"
- "14"
- "16"

View File

@@ -25,7 +25,7 @@ describe('travis.yml', function () {
describe('strucure', function () {
it('language must be set to node', function () {
expect(travisYAML.language).to.be('node_js');
expect(travisYAML.node_js).to.eql(['8', '10', '12', 'lts/*']);
expect(travisYAML.node_js).to.eql(['8', '10', '12', '14', '16']);
});
});
});