From 31a8d688093407a2c3132c526e024928c5484c7d Mon Sep 17 00:00:00 2001 From: giancarlo Date: Sat, 13 Apr 2024 03:06:02 +0800 Subject: [PATCH] Update workflow to run app in background Changed the `.github/workflows/workflow.yml` to run the application in the background during Github Actions workflow. This change will allow the Playwright tests to run while the app is still running, providing better efficiency and time management in the CI/CD 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 b5596ec65..4c701a0a8 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -89,7 +89,7 @@ jobs: - name: Run App run: | pnpm --filter web build:test - pnpm --filter web start:test + pnpm --filter web start:test & - name: Run Playwright tests run: pnpm run test