What’s the best way to get the results of the tests and report the results?
I’m trying to setup a pipeline whereby a GitHub action is run for every commit to do all unit tests and app tests.
Any suggestions? Thanks a lot.
What’s the best way to get the results of the tests and report the results?
I’m trying to setup a pipeline whereby a GitHub action is run for every commit to do all unit tests and app tests.
Any suggestions? Thanks a lot.
We have an org lea.online developers · GitHub where we have many repositories with different test setups (Project, Package Package with Testproject), all using GitHub actions. Feel free to clone,copy, improve etc.
Thank you so much! This is super useful.
A few questions if you don’t mind!
meteor test
. When tests fail, does meteor exit with an error code so you’ll get a special email alert via GitHub, or do you peek at the log every time the action runs?meteor app-test
) at all? Is that what you’re using Jest for? Looks like yes. Do you get email alerts on failures via Jest/GitHub or what’s the user interaction there look like?Thanks again, much appreciated.
Thanks. I don’t mean exit with an error code on error - I mean how do you know if a test fails?