Skip to content

Commit

Permalink
feat: start using node.js 10.
Browse files Browse the repository at this point in the history
fixes #96
  • Loading branch information
lholmquist committed Apr 30, 2018
1 parent de537d2 commit 0cb3a13
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 @@ -16,7 +16,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/fruits-integration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const rhoaster = require('rhoaster');

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

testEnvironment.deploy()
Expand Down

0 comments on commit 0cb3a13

Please sign in to comment.