From 21a0eae2bbb4811d1c207658885d80555dd07c25 Mon Sep 17 00:00:00 2001 From: rk16449 Date: Mon, 11 Mar 2024 14:23:29 +0000 Subject: [PATCH] chore: fix test --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f321213c..312f9b60 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,12 @@ jobs: run: npm install - name: Cypress run working-directory: "./clients/react-app" - run: npm run cypress:open + run: | + npm run build + npm start + npm install cypress + npx cypress run --browser chrome + release: permissions: write-all runs-on: ${{ matrix.os }}