From fb28a2ed586a878e19a54d02d819a37dc77772e8 Mon Sep 17 00:00:00 2001 From: Misha Holtz <36575242+mnholtz@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:56:10 -0700 Subject: [PATCH] make browser installation dynamic --- .github/workflows/end-to-end-tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/end-to-end-tests.yml b/.github/workflows/end-to-end-tests.yml index b3430241ed..511531f105 100644 --- a/.github/workflows/end-to-end-tests.yml +++ b/.github/workflows/end-to-end-tests.yml @@ -55,8 +55,7 @@ jobs: - name: Install playwright browsers uses: Wandalen/wretry.action@v3.5.0 with: - # TODO: replace with dynamic input - command: npx playwright install chrome msedge + command: npx playwright install ${{ join(fromJson(inputs.projects), ' ') }} with: | fail_ci_if_error: true verbose: true