© 2023 Hashnode
#ci-cd
Introduction As software developers, keeping track of changes made to a project is crucial for communication and collaboration with others on the team. With multiple people working on a project, manu…
This post is written by Gabriel Savit and originally posted to Codemagic blog. Codemagic is now officially integrated with Runway, the DevOps platform for mobile. But wait, you might be wondering, is…
A major requirement in developing a non-trivial software product is the establishment of a formal workflow for Continuous integration and Continuous delivery. Whether it’s an individual or group project, the CI/CD workflow lays the groundwo…
Here's a dead simple guide to understanding it: CI/CD stands for Continuous Integration and Continuous Deployment. It's a process where code changes are regularly merged into a shared repository, and …
Automate, customize, and execute your software development workflows right in your repository with GitHub Actions. You can discover, create, and share actions to perform any job you'd like, including …
In this blog post, I share tips on how to use GitHub actions most efficiently and avoid unnecessary execution time and money spending. I assume you are familiar with GitHub Actions and used them alrea…
Smoke testing is an integral part of a CI/CD setup and can help you reach your goals more quickly. In this blog post, you’ll learn more about smoke testing and how it may help you find issues in your …
Introduction Serverless architecture is becoming an increasingly popular way to build and run applications, with many companies turning to this approach to reduce costs, improve scalability, and speed…
In this post, I will be working on applying a Continuous Integration pipeline using GitHub Action and a Continuous Deployment strategy using FluxCD, a CNCF-hosted GitOps tool. I already have a repository of the application hosted on GitHub …
Introduction In this tutorial, we will set up a CI/CD pipeline for a simple React application with the help of Travis-CI. Travis-CI works best with Github, so we will use GitHub in this tutorial. Pre-…