diff --git a/docs/dashboard/cicd/best-practices.md b/docs/dashboard/cicd/best-practices.md index 884af241d..10a0487e9 100644 --- a/docs/dashboard/cicd/best-practices.md +++ b/docs/dashboard/cicd/best-practices.md @@ -12,12 +12,10 @@ layout: Doc # Serverless CI/CD Best Practices - Serverless Framework Pro provides a lot of capabilities out of the box to help you manage and deploy your services. As your teams grow and the number of services grow, it can be difficult to know the best way to organize your services for scale. - To help you manage and deploy your services at scale, check out the [Serverless CI/CD Workflow Guide](https://serverless.com/learn/guides/cicd/) for our recommendations on organizing your apps, servies, repos and automating your release process. diff --git a/lib/plugins/aws/package/compile/functions/index.test.js b/lib/plugins/aws/package/compile/functions/index.test.js index ce4e6f8ff..5ac4fc62f 100644 --- a/lib/plugins/aws/package/compile/functions/index.test.js +++ b/lib/plugins/aws/package/compile/functions/index.test.js @@ -646,10 +646,7 @@ describe('AwsCompileFunctions', () => { Role: { 'Fn::GetAtt': ['IamRoleLambdaExecution', 'Arn'] }, Runtime: 'nodejs12.x', Timeout: 6, - Tags: [ - { Key: 'foo', Value: 'bar' }, - { Key: 'baz', Value: 'qux' }, - ], + Tags: [{ Key: 'foo', Value: 'bar' }, { Key: 'baz', Value: 'qux' }], }, }; @@ -691,10 +688,7 @@ describe('AwsCompileFunctions', () => { Role: { 'Fn::GetAtt': ['IamRoleLambdaExecution', 'Arn'] }, Runtime: 'nodejs12.x', Timeout: 6, - Tags: [ - { Key: 'foo', Value: 'bar' }, - { Key: 'baz', Value: 'qux' }, - ], + Tags: [{ Key: 'foo', Value: 'bar' }, { Key: 'baz', Value: 'qux' }], }, };