Skip to content

Commit

Permalink
chore: npm run eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
dannysteenman committed Jan 31, 2025
1 parent 8a2a319 commit d1aaec6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/bin/cicd-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ function getCommonWorkflowSteps(
uses: 'actions/setup-node@v4',
with: {
'node-version': nodeVersion ? `>=${nodeVersion}` : undefined,
'cache': 'npm',
cache: 'npm',
},
},
{
Expand Down
6 changes: 3 additions & 3 deletions src/constructs/network-construct.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export class NetworkConstruct extends BaseConstruct {
this.environment === 'production'
? {}
: {
autoDeleteObjects: true,
removalPolicy: RemovalPolicy.DESTROY,
};
autoDeleteObjects: true,
removalPolicy: RemovalPolicy.DESTROY,
};

// Create a VPC with 9 subnets divided over 3 AZ's (3 public, 3 private, 3 isolated)
this.vpc = new ec2.Vpc(this, 'Vpc', {
Expand Down

0 comments on commit d1aaec6

Please sign in to comment.