diff --git a/.github/workflows/frontend.yaml b/.github/workflows/frontend.yaml index 846206d..34abb7d 100644 --- a/.github/workflows/frontend.yaml +++ b/.github/workflows/frontend.yaml @@ -33,5 +33,5 @@ jobs: run: pnpm install working-directory: frontend - - name: Build API + - name: Run Integration Tests run: task test:integration diff --git a/Taskfile.yml b/Taskfile.yml index 8aca42a..cc215da 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -33,7 +33,8 @@ tasks: test:integration: cmds: - - cd backend && go run ./app/api/ & + - cd backend && go build ./app/api + - backend/api & - sleep 5 - cd frontend && pnpm run test:ci silent: true