From d1624b16e990effe5b5b93e00a0dcc98ae228c4a Mon Sep 17 00:00:00 2001 From: Paul Wackerow <54227730+wackerow@users.noreply.github.com> Date: Mon, 6 Oct 2025 13:25:03 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20order=20of=20workflow=20actions=E2=80=94?= =?UTF-8?q?install=20deps=20before=20netlify=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/playwright.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index e6b8b6d83dc..5022afbaee9 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -9,6 +9,16 @@ jobs: steps: - uses: actions/checkout@v5 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + + - name: Setup pnpm + uses: pnpm/action-setup@v2 + + - name: Install dependencies + run: pnpm install + - name: Get Netlify Deploy URL for branch id: netlify_deploy if: | @@ -20,16 +30,6 @@ jobs: NETLIFY_TOKEN: ${{ secrets.NETLIFY_TOKEN }} GITHUB_REF_NAME: ${{ github.ref_name }} - - uses: actions/setup-node@v4 - with: - node-version: lts/* - - - name: Setup pnpm - uses: pnpm/action-setup@v2 - - - name: Install dependencies - run: pnpm install - - name: Install Playwright with all browsers run: npx playwright install --with-deps