From 96052a0ff6dc98f236af4c655af0205c0c953af4 Mon Sep 17 00:00:00 2001 From: "Felipe M." Date: Wed, 25 Dec 2024 09:10:11 +0100 Subject: [PATCH] make playwright available in path --- .github/workflows/_e2e.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_e2e.yml b/.github/workflows/_e2e.yml index 20e652af5..6f09cb63f 100644 --- a/.github/workflows/_e2e.yml +++ b/.github/workflows/_e2e.yml @@ -19,7 +19,10 @@ jobs: with: node-version: lts/* - - name: Install Playwright Browsers - run: npx playwright install --with-deps + - name: Install Playwright + run: npx install playwright + + - name: Install browsers + run: playwright install --with-deps - run: make e2e