From 3c1285096c5b7cd489f9b6fb71a0d9a06c690e3f Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Sat, 3 Sep 2022 18:50:12 -0800 Subject: [PATCH] build then start --- .github/workflows/frontend.yaml | 2 +- Taskfile.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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