From 49c050c92b681c09d66f24bb4ed96b2a6f61f2d1 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Thu, 11 Apr 2024 16:38:50 +0800 Subject: [PATCH] Add 'Run App' step to the GitHub workflow This commit introduces a new step in the GitHub actions workflow file. 'Run App' step, which runs the development server, has been included right before running the Playwright tests. This change is essential for seeing a real-time reflection of changes in the dev server during the testing phase. --- .github/workflows/workflow.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index ab0a57753..e1e11cf2d 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -64,6 +64,8 @@ jobs: run: pnpm install - name: Install Playwright Browsers run: pnpm exec ./apps/e2e/node_modules/.bin/playwright install --with-deps + - name: Run App + run: pnpm run dev - name: Run Playwright tests run: pnpm run test - uses: actions/upload-artifact@v4