File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed
Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ updates:
66 interval : " weekly"
77 open-pull-requests-limit : 10
88 versioning-strategy : " auto"
9+ ignore :
10+ # aws-cdk-lib and constructs are peer dependencies — their minimum floor
11+ # is managed manually in package.json and should not be auto-bumped.
12+ - dependency-name : " aws-cdk-lib"
13+ - dependency-name : " constructs"
914 groups :
1015 all-dependencies :
1116 patterns :
Original file line number Diff line number Diff line change 1+ name : CDK Compatibility
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+
8+ jobs :
9+ check :
10+ name : aws-cdk-lib@${{ matrix.aws-cdk-version }}
11+ runs-on : ubuntu-latest
12+ strategy :
13+ matrix :
14+ include :
15+ - aws-cdk-version : " 2.220.0"
16+ constructs-version : " 10.4.2"
17+ - aws-cdk-version : " latest"
18+ constructs-version : " latest"
19+ steps :
20+ - uses : actions/checkout@v4
21+ - uses : actions/setup-node@v4
22+ with :
23+ node-version : 22
24+ cache : npm
25+ - run : npm run install:all
26+ - run : npm install --no-save aws-cdk-lib@${{ matrix.aws-cdk-version }} constructs@${{ matrix.constructs-version }}
27+ - run : npm run build
You can’t perform that action at this time.
0 commit comments