Best way to debug github action? #22229
Unanswered
acomito
asked this question in
Questions and Help
Replies: 1 comment
-
CI resources are limited and can lead to command timeouts. One way to combat flakiness is sprinkling intercepts and assertions throughout your test and possibly breaking down longer tests into small spec files. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I run my test suite locally with cypress run against a docker setup of my app, everything passes 100% like 98% of the time
When I run it in a github action, using docker and using the same DB backing the instance, it passes 100% of the suite like 45% of the time... the only big difference that stands out to to me is that locally I run
cypress run
and in the github action, I'm using thecypress-io/github-action@v4
I'm not that familiar with github actions or cypress-- wondering what is the best way to debug this. Seems like it's often a timeout related issue? Do I need to bump up the juice for my github actions?
Beta Was this translation helpful? Give feedback.
All reactions