Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pairing/asg replace #491

Closed
wants to merge 11 commits into from
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ jobs:
cdk.out:
- cdk/cdk.out
cdk-playground:
- target/cdk-playground.deb
- dist/cdk-playground
cdk-playground-lambda:
- lambda/cdk-playground-lambda.zip
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
target
logs
lambda/cdk-playground-lambda.zip
dist/
6 changes: 4 additions & 2 deletions cdk/bin/cdk.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import 'source-map-support/register';
import { GuRoot } from "@guardian/cdk/lib/constructs/root";
import { GuRoot } from '@guardian/cdk/lib/constructs/root';
import { CdkPlayground } from '../lib/cdk-playground';

const app = new GuRoot();
new CdkPlayground(app, 'CdkPlayground');
new CdkPlayground(app, 'CdkPlayground', {
cloudFormationStackName: 'playground-PROD-cdk-playground',
});
3 changes: 2 additions & 1 deletion cdk/jest.setup.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
jest.mock("@guardian/cdk/lib/constants/tracking-tag");
jest.mock('@guardian/cdk/lib/constants/tracking-tag');
process.env.GITHUB_RUN_NUMBER = 'TEST';
Loading