From 63c818cc885cbd221f4d3e2e24ef42ec44a90bde Mon Sep 17 00:00:00 2001 From: giancarlo Date: Mon, 15 Apr 2024 12:50:43 +0800 Subject: [PATCH] Update run command in workflow The .github/workflows/workflow.yml file has been updated to run the 'start:test' command in the background. This change was made to allow the workflow to continue running subsequent steps without waiting for the 'start:test' command to finish. --- .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 aa41fe0d6..47d03b9a5 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -110,7 +110,7 @@ jobs: run: pnpm --filter web build:test - name: Run App - run: pnpm --filter web start:test + run: pnpm --filter web start:test & - name: Run Playwright tests run: pnpm run test