From 80f6ea1c88bece91f9d220c705a341ede4fb385c Mon Sep 17 00:00:00 2001 From: sergiomartins Date: Tue, 26 Mar 2024 13:15:32 +0000 Subject: [PATCH] differ from studio and classic integration tests --- .github/workflows/integration_tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index d46f9e4..a6e1fe5 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -29,5 +29,11 @@ jobs: run: npm ci && npm run build - name: Install Playwright Browsers run: npx playwright install --with-deps - - name: Run Playwright tests + - name: Run Playwright tests for studio integration + env: + IS_CLASSIC_INTEGRATION: 'false' run: npm run e2e + - name: Run Playwright tests for classic integration + env: + IS_CLASSIC_INTEGRATION: 'true' + run: npm run e2e \ No newline at end of file