diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml
index 4b95517..269ef51 100644
--- a/.gitea/workflows/ci.yml
+++ b/.gitea/workflows/ci.yml
@@ -10,16 +10,23 @@ jobs:
     container:
       image: catthehacker/ubuntu:act-latest
     steps:
-      - uses: actions/checkout@v4
-      - uses: oven-sh/setup-bun@v2
-      - uses: actions/cache@v4
+      - name: Checkout Code
+        uses: actions/checkout@v4
+      - name: Install bun
+        uses: oven-sh/setup-bun@v2
+      - name: Cache
+        uses: actions/cache@v4
         with:
           path: |
             ~/.npm
           key: ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }}
           restore-keys: |
             ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-
-      - run: |
+      - name: Install dependencies
+        run: |
           cd frontend
           bun install
-      - run: bun run build
+      - name: Test build
+        run: |
+          cd frontend
+          bun run build