From f51d32ba5f315d191f55e7f74c06786b2c7505f0 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 12 Feb 2025 11:20:51 +0100 Subject: [PATCH] ci: add cd command to frontend in CI workflow --- .gitea/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6234d3a..0f1e330 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -19,5 +19,6 @@ jobs: key: ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('**/*.js', '**/*.jsx', '**/*.ts', '**/*.tsx') }} restore-keys: | ${{ runner.os }}-bun-${{ hashFiles('**/package-lock.json') }}- + - run: cd frontend - run: bun install - run: bun run build