From 6ad84026da1ee529c5709672cb36e32bc9472a03 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Sat, 13 Apr 2024 15:54:34 +0800 Subject: [PATCH] Update command to run app in background The command to run the app in the .github/workflows/workflow.yml file has been updated. "pnpm run dev" now runs in the background, allowing it to progress alongside subsequent commands in the workflow. This change is expected to enhance the efficiency of the workflow process. --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ddc6ea4a4..ed7bf1934 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -88,7 +88,7 @@ jobs: - name: Run App run: | - pnpm run dev + pnpm run dev & - name: Run Playwright tests run: pnpm run test