Skip to content

Commit ade090c

Browse files
authored
Merge pull request #507 from postmanlabs/feature/fix-travis-issue
Fixed travis pipelines build issue for certain node version.
2 parents 75d8884 + 4c86094 commit ade090c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
language: node_js
2+
dist: 'xenial'
23
node_js:
34
- "8"
4-
- "9"
55
- "10"
6-
- "11"
76
- "12"
8-
- "node"
97
- "lts/*"

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', '9', '10', '11', '12', 'node', 'lts/*']);
28+
expect(travisYAML.node_js).to.eql(['8', '10', '12', 'lts/*']);
2929
});
3030
});
3131
});

0 commit comments

Comments
 (0)