From b1ea046bcd51a63609f10218e039b95da1c128b6 Mon Sep 17 00:00:00 2001 From: Momo Kornher Date: Thu, 4 Dec 2025 15:57:24 -0800 Subject: [PATCH] chore: build mixins-preview package in aws-cdk integration test --- .github/workflows/test-aws-cdk-integration.yml | 2 +- projenrc/aws-cdk-integration-test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-aws-cdk-integration.yml b/.github/workflows/test-aws-cdk-integration.yml index 134aa3521..4ebbb2e99 100644 --- a/.github/workflows/test-aws-cdk-integration.yml +++ b/.github/workflows/test-aws-cdk-integration.yml @@ -49,5 +49,5 @@ jobs: run: yarn install working-directory: aws-cdk - name: Build aws/aws-cdk - run: npx lerna run build --no-bail --scope aws-cdk-lib --include-dependencies + run: npx lerna run build --no-bail --scope aws-cdk-lib --scope @aws-cdk/mixins-preview --include-dependencies working-directory: aws-cdk diff --git a/projenrc/aws-cdk-integration-test.ts b/projenrc/aws-cdk-integration-test.ts index 46beb4f32..8b669c6c6 100644 --- a/projenrc/aws-cdk-integration-test.ts +++ b/projenrc/aws-cdk-integration-test.ts @@ -117,7 +117,7 @@ function buildAwsCdkLib(repository: string, path: string): pj.github.workflows.S { name: `Build ${repository}`, workingDirectory: path, - run: 'npx lerna run build --no-bail --scope aws-cdk-lib --include-dependencies', + run: 'npx lerna run build --no-bail --scope aws-cdk-lib --scope @aws-cdk/mixins-preview --include-dependencies', }, ]; }