Skip to content

Commit

Permalink
fix: drop support for node.js 4.x and 9.x (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith authored and alexander-fenster committed Jul 10, 2018
1 parent ed1024a commit c3a0643
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
17 changes: 4 additions & 13 deletions packages/google-cloud-compute/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,8 @@ jobs:
npm install
environment:
NPM_CONFIG_PREFIX: /home/node/.npm-global
- run:
name: Run unit tests.
command: npm test
- run:
name: Submit coverage data to codecov.
command: node_modules/.bin/codecov
when: always
- run: npm test
- run: node_modules/.bin/codecov
node8:
docker:
- image: 'node:8'
Expand Down Expand Up @@ -183,9 +178,5 @@ jobs:
user: node
steps:
- checkout
- run:
name: Set NPM authentication.
command: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- run:
name: Publish the module to npm.
command: npm publish
- run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
- run: npm publish
2 changes: 1 addition & 1 deletion packages/google-cloud-compute/samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"author": "Google Inc.",
"repository": "googleapis/nodejs-compute",
"engines": {
"node": ">=4.0.0"
"node": ">=6.0.0"
},
"scripts": {
"system-test": "ava -T 20s --verbose system-test/*.test.js",
Expand Down

0 comments on commit c3a0643

Please sign in to comment.