We are deploying our serverless app using seed.run...
# help
p
We are deploying our serverless app using seed.run. After deployment is successful, I want to run e2e integration test on the deployed instance (only dev and staging but not production). How can I achieve that. Using
after_deployment
hooks doesn't seems to be ideal as it runs
n times
for
n number of services
deployed.
o
You can use a Post deploy phase that will run after all services are deployed: https://seed.run/docs/adding-a-post-deploy-phase.html
f
Thanks @Omi Chowdhury 🎯