Skip to content

Commit 74d831b

Browse files
author
Ankit Saini
authored
Merge pull request #641 from postmanlabs/feature/fix-failing-pipelines
Fixed failing pipelines.
2 parents 95f5c1d + 802f86f commit 74d831b

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)