Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: properly call reuseable workflow in test-dev and test-int #404

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -295,16 +295,13 @@ jobs:
pull-requests: write
secrets: inherit

test-dev:
test_dev:
name: Run Tests on DEV
needs:
- terraform_env_dev
runs-on: ubuntu-latest
steps:
- name: Run E2E Smoke Test on DEV
uses: dvsa/vol-functional-tests/.github/workflows/e2eSmoke.yaml@main
with:
platform_env: dev
uses: dvsa/vol-functional-tests/.github/workflows/e2eSmoke.yaml@main
with:
platform_env: dev

terraform_env_int:
name: Environment (int)
Expand Down Expand Up @@ -334,12 +331,9 @@ jobs:
name: Run Tests on INT
needs:
- terraform_env_int
runs-on: ubuntu-latest
steps:
- name: Run E2E Smoke Test on INT
uses: dvsa/vol-functional-tests/.github/workflows/e2eSmoke.yaml@main
with:
platform_env: int
uses: dvsa/vol-functional-tests/.github/workflows/e2eSmoke.yaml@main
with:
platform_env: int

rollback_int:
name: Rollback INT Deployment
Expand Down