Skip to content

Commit

Permalink
GH-419 Update acceptance test runtime from node8 to node10
Browse files Browse the repository at this point in the history
  • Loading branch information
ceilfors committed Dec 3, 2019
1 parent 202e8ec commit 9af8d91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/laconia-acceptance-test/package.json
Expand Up @@ -23,12 +23,12 @@
"url": "https://github.com/laconiajs/laconia.git"
},
"scripts": {
"test": "npm run test:8",
"test:8": "AWS_REGION=eu-west-1 NODE_VERSION=node8 jest /acceptance-test",
"deploy": "npm run deploy:8",
"deploy:8": "AWS_REGION=eu-west-1 NODE_RUNTIME=nodejs8.10 NODE_VERSION=node8 sls deploy",
"remove": "npm run remove:8",
"remove:8": "AWS_REGION=eu-west-1 NODE_RUNTIME=nodejs8.10 NODE_VERSION=node8 sls remove"
"test": "npm run test:10",
"test:10": "AWS_REGION=eu-west-1 NODE_VERSION=node10 jest /acceptance-test",
"deploy": "npm run deploy:10",
"deploy:10": "AWS_REGION=eu-west-1 NODE_RUNTIME=nodejs10.x NODE_VERSION=node10 sls deploy",
"remove": "npm run remove:10",
"remove:10": "AWS_REGION=eu-west-1 NODE_RUNTIME=nodejs10.x NODE_VERSION=node10 sls remove"
},
"dependencies": {
"@laconia/adapter": "^1.8.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/laconia-acceptance-test/serverless.yml
Expand Up @@ -12,8 +12,8 @@ package:

provider:
name: aws
runtime: ${env:NODE_RUNTIME, 'nodejs8.10' }
stage: ${env:NODE_VERSION, 'node8' }
runtime: ${env:NODE_RUNTIME, 'nodejs10.x' }
stage: ${env:NODE_VERSION, 'node10' }
region: ${env:AWS_REGION, 'eu-west-1'}
tracing: true
apiGateway:
Expand Down

0 comments on commit 9af8d91

Please sign in to comment.