How to write End-to-End testing by Playwright
End-to-End (E2E) Testing involves testing user flows in an environment that simulates real user scenarios, like the browser. Playwright is my favorite testing framework that lets us automate Chromium, Firefox, and WebKit with a single API.
How to use Github Actions to automate deployment
I really love using CI/CD to automate tasks such as testing and deployment. All we have to do is push the code, and our website is automatically updated! Before that, we need to add a config file. It's easy and simple, so it should not cost us much time.
How to deploy a blog to AWS EC2
It's always a headache to deploy a blog or any other app to a cloud server. Fortunately, we can use GitHub Actions or any other CI/CD tool to automate many of the same steps. Before that we need setup the server.
Why build a blog with Next.js
In the last few days, I've been learning React, which is one of the most popular front-end libraries. The most effective way to learn is by developing projects by hand, and a common project to start with is a blog.