From 5c0152d23459f22c747cee2d5a270b36f3bdb973 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Sun, 9 Nov 2025 15:52:49 -0800 Subject: [PATCH] Actually build project before testing --- .gitea/workflows/build-staging.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/build-staging.yaml b/.gitea/workflows/build-staging.yaml index 4c8ee8b..fbbefcc 100644 --- a/.gitea/workflows/build-staging.yaml +++ b/.gitea/workflows/build-staging.yaml @@ -22,6 +22,9 @@ jobs: npm ci npx playwright install --with-deps + - name: Build Project + run: npm run build + - name: Run Unit Tests run: npm run test