Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #600 from Financial-Times/upgrade-node-engine-to-10-x
Browse files Browse the repository at this point in the history
Upgrade node engine from 8.x to 10.x
  • Loading branch information
alexmuller authored Jun 24, 2020
2 parents bd2d0df + ca8b1ab commit c5a5aba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@

references:

container_config_node8: &container_config_node8
container_config_node10: &container_config_node10
working_directory: ~/project/build
docker:
- image: circleci/node:8-browsers
- image: circleci/node:10-browsers

container_config_lambda_node8: &container_config_lambda_node8
container_config_lambda_node10: &container_config_lambda_node10
working_directory: ~/project/build
docker:
- image: lambci/lambda:build-nodejs8.10
- image: lambci/lambda:build-nodejs10.x

workspace_root: &workspace_root
~/project
Expand Down Expand Up @@ -60,7 +60,7 @@ version: 2
jobs:

build:
<<: *container_config_node8
<<: *container_config_node10
steps:
- checkout
- run:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- build

test:
<<: *container_config_node8
<<: *container_config_node10
steps:
- *attach_workspace
- run:
Expand All @@ -106,7 +106,7 @@ jobs:
destination: test-results

publish:
<<: *container_config_node8
<<: *container_config_node10
steps:
- *attach_workspace
- run:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@financial-times/n-heroku-tools",
"version": "0.0.0",
"engines": {
"node": "^8.9.0"
"node": "10.x"
},
"bin": {
"n-heroku-tools": "./bin/n-heroku-tools.js",
Expand Down

0 comments on commit c5a5aba

Please sign in to comment.