Lets say we have three repos web
, api
and e2e-tests
and two environments dev
and prod
.
The e2e-tests
contains some selenium tests to verify end-to-end (E2E) functionality. I’d like to run the E2E tests after a deploy to an environment. What’s the best way to have a build of either project web
or api
to trigger a build of e2e-tests
test execution in the appropriate environment? This sort of thing is trivial in Teamcity/Jenkins but I’m wrapping my mind around how to do it here.