Skip to content

Commit

Permalink
feat: start using node.js 10. (#102)
Browse files Browse the repository at this point in the history
fixes #101
  • Loading branch information
lholmquist authored Apr 27, 2018
1 parent 7ad9e6c commit 665405d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .openshiftio/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ objects:
- name: latest
from:
kind: DockerImage
name: 'bucharestgold/centos7-s2i-nodejs:8.x'
name: 'bucharestgold/centos7-s2i-nodejs:10.x'
- apiVersion: v1
kind: BuildConfig
metadata:
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ dist: trusty
language: node_js
node_js:
- "8"
- "10"

before_install:
- npm install -g npm@5
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"ci": "npm run lint && npm run coveralls",
"dependencyCheck": "szero . --ci",
"release": "standard-version -a",
"openshift": "nodeshift --strictSSL=false --nodeVersion=8.x",
"openshift": "nodeshift --strictSSL=false --nodeVersion=10.x",
"postinstall": "license-reporter report -s && license-reporter save -s --xml licenses.xml",
"start": "node ."
},
Expand Down
2 changes: 1 addition & 1 deletion test/integration/greeting-integration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const rhoaster = require('rhoaster');

const testEnvironment = rhoaster({
deploymentName: 'nodejs-rest-http',
nodeVersion: '8.x'
nodeVersion: '10.x'
});

testEnvironment.deploy()
Expand Down

0 comments on commit 665405d

Please sign in to comment.