Skip to content

Commit 5110cc3

Browse files
Merge pull request #685 from hjgraca/feat-e2e
chore: Add workflow call to e2e tests
2 parents 9e1ef41 + 06abc28 commit 5110cc3

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/e2e-infra-deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
name: E2E Tests Infra deployment
1111

12+
on:
13+
workflow_call:
14+
1215
permissions:
1316
id-token: write
1417
contents: read
@@ -67,4 +70,4 @@ jobs:
6770
- name: Deploy AOT Stack
6871
run: |
6972
cd libraries/tests/e2e/infra-aot
70-
cdk deploy --require-approval never
73+
cdk deploy --require-approval never

.github/workflows/e2e-infra-destroy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
name: Destroy e2e CDK Stacks
1111

12+
on:
13+
workflow_call:
14+
1215
permissions:
1316
id-token: write
1417
contents: read
@@ -37,4 +40,4 @@ jobs:
3740
- name: Destroy AOT Stack
3841
run: |
3942
cd libraries/tests/e2e/infra-aot
40-
cdk destroy --force
43+
cdk destroy --force

0 commit comments

Comments
 (0)