DEV Community

Discussion on: How do GitHub Actions work?

Collapse
 
arschles profile image
Aaron Schlesinger

GitHub has webhooks for tons of things that happen to your repo. GitHub actions lets you run whatever code you want (like unit tests!), to respond to any of those webhooks.

Your code runs on GitHub's servers and you can get status updates on whether your code passed or failed