We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5f105a commit 319eeb0Copy full SHA for 319eeb0
.github/workflows/integration-test.yml
@@ -47,7 +47,7 @@ jobs:
47
48
- name: Set up Project
49
run: |
50
- pip install -r requirements-dev.txt
+ pip install -e ".[deploy,test]"
51
52
- name: Start LocalStack
53
uses: LocalStack/[email protected]
@@ -59,9 +59,21 @@ jobs:
59
env:
60
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
61
62
+ - name: Set up NodeJS 22
63
+ id: setup-nodejs
64
+ uses: actions/setup-node@v4
65
+ with:
66
+ node-version: 22
67
+
68
+ - name: Set up CDK Local
69
+ id: setup-cdklocal
70
+ run: |
71
+ npm install -g aws-cdk-local aws-cdk
72
73
- name: Deploy infrastructure
74
+ working-directory: deployments/cdk
75
- bin/deploy.sh
76
+ cdklocal bootstrap && cdklocal deploy --require-approval never
77
78
- name: Run Tests
79
0 commit comments