Skip to content

Commit b6fcc01

Browse files
heitorlessarubenfonseca
authored andcommitted
chore: add CDK CLI as a project dependency
Signed-off-by: heitorlessa <[email protected]>
1 parent a6a4da0 commit b6fcc01

File tree

3 files changed

+75
-2
lines changed

3 files changed

+75
-2
lines changed

.github/workflows/run-e2e-tests.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
strategy:
2929
matrix:
3030
# Maintenance: disabled until we discover concurrency lock issue with multiple versions and tmp
31-
# version: ["3.7", "3.8", "3.9"]
32-
version: ["3.7"]
31+
version: ["3.7", "3.8", "3.9"]
32+
# version: ["3.7"]
3333
steps:
3434
- name: "Checkout"
3535
uses: actions/checkout@v3
@@ -41,6 +41,14 @@ jobs:
4141
python-version: ${{ matrix.version }}
4242
architecture: "x64"
4343
cache: "poetry"
44+
- name: Setup Node.js
45+
uses: actions/setup-node@v3
46+
with:
47+
node-version: "16.12"
48+
- name: Install CDK CLI
49+
run: |
50+
npm install
51+
cdk --version
4452
- name: Install dependencies
4553
run: make dev
4654
- name: Configure AWS credentials

package-lock.json

Lines changed: 58 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "aws-lambda-powertools-python-e2e",
3+
"version": "1.0.0",
4+
"devDependencies": {
5+
"aws-cdk": "2.40.0"
6+
}
7+
}

0 commit comments

Comments
 (0)