From 3f2982ddb3f122eeca0da5880ced212e152c6b17 Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Fri, 2 Jan 2026 17:46:03 -0600 Subject: [PATCH] Update Gitea workflow to include frontend build step and adjust Go build command - Added a step to install and build the frontend using npm in the test-pr.yaml workflow. - Modified the Go build command to compile all packages instead of specifying the output binary location. - This change improves the build process by integrating frontend assets with the backend build. --- .gitea/workflows/test-pr.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test-pr.yaml b/.gitea/workflows/test-pr.yaml index 2602c67..2c56f54 100644 --- a/.gitea/workflows/test-pr.yaml +++ b/.gitea/workflows/test-pr.yaml @@ -10,6 +10,7 @@ jobs: - uses: actions/setup-go@main with: go-version-file: 'go.mod' - - run: go mod tidy - - run: go build -o bin/jiggablend ./cmd/jiggablend + - run: go mod tidy + - run: cd web && npm install && npm run build + - run: go build ./... - run: go test -race -v -shuffle=on ./... \ No newline at end of file