From 958c8f70a42fa2295963cd17268588d0d36e628a Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 12 Feb 2025 11:23:38 +0100 Subject: [PATCH] ci: improve CI workflow with step names for clarity --- .gitea/workflows/ci.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) 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