Skip to content

Commit ae8a681

Browse files
author
Ankit Saini
authored
Merge pull request #671 from postmanlabs/feature/upgrade-node-version
Change minimum node version required to v12
2 parents de5b8dc + f1d1d56 commit ae8a681

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Setup Node JS
1212
uses: actions/setup-node@v1
1313
with:
14-
node-version: '8.x'
14+
node-version: '12.x'
1515
- name: Install system dependencies
1616
run: npm run cirequirements
1717
- name: Install package dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@
5454
"watchify": "3.11.1"
5555
},
5656
"engines": {
57-
"node": ">=6"
57+
"node": ">=12"
5858
}
5959
}

test/system/repository.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ describe('project repository', function () {
3838
expect(json).to.have.property('repository');
3939

4040
expect(json).to.have.property('engines');
41-
expect(json.engines).to.eql({ node: '>=6' });
41+
expect(json.engines).to.eql({ node: '>=12' });
4242
});
4343

4444
it('must have a valid version string in form of <major>.<minor>.<revision>', function () {

0 commit comments

Comments
 (0)