Hi all, I can see that in some example we are usin...
# pactflow
n
Hi all, I can see that in some example we are using webhooks to check if the pact has changed etc. But when is this needed? The bidirectional flow I currently built is: Provider: • Publish openapi to pactflow • Run can-i-deploy Consumer: • run the tests
npm run test:pact
to test and create the pacts from the test • publish the pacts to pactflow • run can-i-deploy This flow is simple but seems to work great at least for bidirectional and for one provider and one consumer, is this alright or is there more complexity that I am missing here? Note that I currently only have one provider and one consumer and only one pact for each. Also note that for now we are skipping the "verifying the provider contract" step as we are still looking into that.