Experienced software engineer, you have a good technical background and you want to move on, these articles are for you.
In February 2023, GitHub released its pull request merge queue feature in public beta. If you have no clue what a merge queue is, you can read about it here or watch our video below. After the announcement, many questions popped up on social media. We built a list of
At Mergify, we use Docker containers to run our production environments. Containers help developers deliver their code faster and ship their features in a snap, and they are now used substantially in most software-centric organizations. We are no exception. We build our images, run them, and ship them to customers
Most programming languages are either statically or dynamically typed. With static typing, developers need to define the type of data used, like in the example below in the C language: int example_function(int number, char *string) From the very first look at this function, you know that it takes
In the world of software development, tests are easier to write than to maintain. This statement is even more accurate when it comes to flaky tests. You know, those tests that pass 90% of the time, but well, sometimes, they fail without you knowing why 😢. In cases of flakiness, each
I wrote Jest tests for over three years on a complex web application. Like me, you are probably doing it the wrong way. Without knowing it. I'm not blaming you. Jest is an excellent test runner for frontend code, coupled with enzyme and react-testing-library for React apps, it can be
What is Clean Code? Clean Code is a book written in 2008 by Robert C. Martin. It compiles a lot of knowledge to help every developer write Clean Code. But what is "clean code" exactly? A code considered "clean" is code that: 1. is easy to read; 2. easy to
What is a flaky test? This is a big question since automated testing is key to CI/CD. To fully answer this question, you will understand what makes a test flaky and know the different types of flaky tests, helping you to classify them.
Continuous Integration, Continuous Delivery and Continuous Deployment are like vectors pointing to the same direction but having different magnitude. The factor which makes them point in the same direction is the goal to make our software development process faster and more robust. Continuous Integration, Continuous Delivery and Continuous Deployment all
Bob, after conversing with Jenny, learned about GitOps and is using it effectively. Previously what took him 8-12 weeks to develop due to operations issues can now be resolved in days. Every other week Bob builds a new version of his application. At some point, Bob's user base reached 1
If you never heard of Phabricator, you might not be alone. I admit I only started to hear about it recently, while the project started in 2010. Phabricator is essentially a forge, a suite of web-based developments collaborators tools, including multiple tools to do code reviews, track bugs or browse
Meet Bob, a software developer from France. Being a senior developer and working in a startup, Bob develops, deploys, and maintains his application on his own. Until the point when he came to know about GitOps, he maintained deployment pipelines which also had a lot of manual processes and requests
GitHub Actions is powerful and allows you to run various workflows on your pull requests. There is an entire marketplace of actions that you can use, reuse, and abuse. GitHub Actions became a defacto standard for many developer teams that want to run jobs when creating a pull request. This