Automated Testing with GitHub Actions
Too Long; Didn't Read
GitHub Actions is a CI/CD platform that automates building, testing, and deploying code. In this article, we will explore how to automatically test our code with GitHub Actions when pushing updates to our remote repository. We will look at a minimal example to discover the main building blocks of GitHub Actions and learn how to set it up. The goal is to have the test suite run automatically every time we push a change to the `main pull request or create a workflows that are triggered by events. The code examples are in JavaScript but should be understandable without JS knowledge.
Share Your Thoughts