Run prettify

This commit is contained in:
Maciej Skierkowski 2019-11-21 12:09:14 -08:00
parent 3c5c72ab57
commit ec93566154
2 changed files with 2 additions and 10 deletions

View File

@ -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.

View File

@ -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' }],
},
};