What's Github Action? 🤔 #150
-
So I've been seeing github Action alot lately, what is it all about really? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Great question @jomefavourite GitHub Action is like Continuous Integration (CI) - some examples include TravisCI, CircleCI. They are for running automation, like: Linters, automated testing, and then deployment etc In a nutshell, any commands you run locally, you can run on Github Actions so that it happens for every person - there are events you can hook into, like creating an issue. I created a video on it, that just got released https://www.youtube.com/watch?v=5ncuRFwnrdc&feature=youtu.be |
Beta Was this translation helpful? Give feedback.
Great question @jomefavourite
GitHub Action is like Continuous Integration (CI) - some examples include TravisCI, CircleCI. They are for running automation, like: Linters, automated testing, and then deployment etc
In a nutshell, any commands you run locally, you can run on Github Actions so that it happens for every person - there are events you can hook into, like creating an issue.
I created a video on it, that just got released https://www.youtube.com/watch?v=5ncuRFwnrdc&feature=youtu.be