Setting Up CI/CD with GitHub Actions
Posted by Ray Thurman on 02/27/2025

Hey there, developer! Tired of manually deploying your FastAPI backend and React frontend every time you push a change? Or maybe you’re just curious about streamlining your workflow with some slick automation? Well, buckle up because today we’re diving into the world of Continuous Integration and Continuous Deployment (CI/CD) using GitHub Actions, tailored specifically for a FastAPI and React project—and yes, we’re throwing Docker into the mix for that extra layer of awesomeness. By the end of this post, you’ll have a pipeline that builds, tests, and deploys your app like a pro, all while keeping things isolated and consistent. Let’s get started!
What Is CI/CD and Why Should You Care?
The Basics of CI/CD Unveiled
So, what’s this CI/CD buzz all about? Continuous Integration (CI) is like having a super-organized friend who checks your code every time you commit, making sure it builds and passes tests without breaking anything. Continuous Deployment (CD) takes it a step further—it’s the cool cousin who automatically pushes your polished code to production. Together, they’re a dream team for speeding up development and catching bugs early.
Why It’s a Game-Changer for Developers
Imagine this: you’re working on a FastAPI API and a React frontend. Without CI/CD, you’re stuck manually testing and deploying every change—yawn! With CI/CD, you save time, reduce errors, and focus on coding instead of babysitting deployments. Research shows 50% of developers use CI/CD tools regularly, and 25% adopt new ones yearly (shoutout to the 2024 State of Developer Ecosystem report!). It’s popular because it works, and pairing it with GitHub Actions? That’s a match made in heaven.
Why GitHub Actions?
A Quick Intro to GitHub’s Automation Magic
GitHub Actions is like a Swiss Army knife for automation. It lives right in your GitHub repo, letting you define workflows with simple YAML files. Want to build, test, or deploy? Actions has your back. It’s free for public repos, integrates seamlessly with GitHub, and—bonus—it plays nice with Docker, which we’ll lean into heavily for this setup.
Benefits Over Other CI/CD Tools
Sure, Jenkins and CircleCI are great, but GitHub Actions keeps it simple. No external setup, no steep learning curve—just code, commit, and watch the magic happen. For our FastAPI and React combo, it’s perfect because we can tailor workflows for both backend and frontend in one place. Plus, it’s got a massive community and marketplace for reusable actions. Sold yet?
Docker: The Secret Sauce for Consistency
What Docker Brings to the Table
Docker’s like a portable lunchbox for your app—it packages everything (code, dependencies, configs) into containers that run the same everywhere. No more “it works on my machine” excuses! For CI/CD, Docker ensures your FastAPI backend and React frontend behave consistently from development to production.
Why It Pairs Perfectly with CI/CD
When you combine Docker with CI/CD, you get isolation and repeatability. Your pipeline builds Docker images, tests them, and deploys them without worrying about server quirks. It’s a no-brainer for a project like ours, where FastAPI’s Python ecosystem and React’s Node.js world need to play nice together.
Getting Started: Prerequisites
Before we dive into the nitty-gritty, let’s make sure you’re ready. You’ll need:
- A GitHub account and a repo (check out my fastapi-react-starter if you want a head start).
- Docker installed locally (because we’re containerizing everything).
- Basic knowledge of FastAPI, React, and Git. Don’t sweat it if you’re new—I’ll keep it beginner-friendly!
Got that? Awesome, let’s roll!
Setting Up Your Project Structure
Picture your repo as a tidy toolbox. Here’s how we’ll organize it:
- /backend: Home for your FastAPI app, with a Dockerfile to containerize it.
- /frontend: Where your React app lives, also with its own Dockerfile.
- .github/workflows: This is where our GitHub Actions magic will happen.
Simple, right? Two folders, two Dockerfiles, and a sprinkle of automation. Let’s build those pipelines next.
Crafting the GitHub Actions Workflow
Step 1: Create the Workflow File
Head to your repo, make a .github/workflows directory, and add a file called ci-cd.yml. This is our playbook. Here’s a basic skeleton to kick things off:
name: CI/CD Pipeline
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and push Docker images
run: echo "Building magic happens here!"
This runs whenever you push to main. Now, let’s flesh it out.
Step 2: Building the FastAPI Backend
For the backend, we’ll build a Docker image and test it. Add these steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build FastAPI Docker Image
run: |
cd backend
docker build -t fastapi-app:latest .
- name: Run Tests
run: |
cd backend
docker run fastapi-app:latest pytest
Your Dockerfile in /backend might look like this:
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
Step 3: Building the React Frontend
Now, the frontend. Add these steps:
- name: Build React Docker Image
run: |
cd frontend
docker build -t react-app:latest .
- name: Run Frontend Tests
run: |
cd frontend
docker run react-app:latest npm test
And a sample Dockerfile in /frontend:
FROM node:22
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
CMD ["npm", "start"]
Deploying with Docker Hub
Pushing Images to Docker Hub
Let’s share our masterpieces with the world (or at least Docker Hub). First, add your Docker Hub creds as GitHub Secrets (DOCKER_USERNAME and DOCKER_PASSWORD). Then, tweak the workflow:
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Tag and Push FastAPI Image
run: |
docker tag fastapi-app:latest yourusername/fastapi-app:latest
docker push yourusername/fastapi-app:latest
- name: Tag and Push React Image
run: |
docker tag react-app:latest yourusername/react-app:latest
docker push yourusername/react-app:latest
Deploying to a Server (Optional)
Want to deploy to a VPS? Add a step to SSH into your server and pull the images. Or use a platform like Heroku—just tweak the CD part accordingly. For simplicity, we’ll stop at Docker Hub here, but the sky’s the limit!
Best Practices to Level Up Your Pipeline
Secrets Management
Never hardcode passwords—use GitHub Secrets! It’s like locking your diary; only you (and your pipeline) can peek inside.
Optimizing Build Times
Cache Docker layers with docker/build-push-action to speed things up. Time’s precious, right?
Troubleshooting Tips
Pipeline failing? Check the logs in the Actions tab. Common culprits: typos in YAML, missing dependencies, or Docker gremlins. Stay calm and debug!
Why This Setup Rocks for FastAPI and React
FastAPI’s Python roots and React’s JavaScript flair can clash without proper isolation. Docker keeps them in their lanes, while GitHub Actions ties it all together. You get a fast, reliable pipeline that scales with your project—pretty sweet, huh?
Real-World Example: My FastAPI-React-Starter
Want to see this in action? Check out my fastapi-react-starter repo. It’s got a working CI/CD pipeline with Docker, ready for you to fork and tweak. Think of it as a sandbox—play around, break stuff, and learn!
Conclusion
And there you have it—a shiny CI/CD pipeline for your FastAPI and React project, powered by GitHub Actions and Docker. We’ve covered the why, the how, and the wow-factor of automating your workflow. It’s not just about saving time; it’s about coding smarter and shipping faster. So, what’s stopping you? Dive into your repo, set this up, and watch your productivity soar. Got questions? Hit me up in the comments—I’d love to hear how it goes!
FAQs
1. Do I need Docker experience to use this setup?
Nope! Basic familiarity helps, but the Dockerfile examples here are straightforward. Start small, experiment, and you’ll pick it up fast.
2. Can I use this pipeline without Docker Hub?
Totally! Skip the push step and deploy locally or to another registry like AWS ECR. It’s flexible—adapt it to your needs.
3. How long does it take to set up?
If your project’s ready, about 30 minutes to an hour. Most of that’s tweaking the YAML and testing. Coffee break included!
4. What if my tests fail in the pipeline?
Check the GitHub Actions logs—they’ll point you to the issue. Usually, it’s a missing dependency or a test that hates containers. Fix, commit, repeat.
5. Is this overkill for a small project?
Not really! Even small projects benefit from automation. It’s like planting a tree—takes effort now, but you’ll thank yourself later.
Check out these great products!
If you find my content valuable, please consider supporting me by buying me a coffee or checking out one of my recommended books on software development. Your support is greatly appreciated!
Copyright © 2025 Ravenwood Creations