From c6799838d617003cf52c898080a7757a1c695dbb Mon Sep 17 00:00:00 2001 From: alexperez Date: Mon, 9 Dec 2024 16:04:36 -0300 Subject: [PATCH] chore: reorder dependency installation steps in deployment workflow --- .github/workflows/deployment.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index c4f2953..a349f98 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -26,10 +26,10 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - - name: Install dependencies - run: npm ci - name: Install Playwright dependencies run: npx playwright install --with-deps + - name: Install dependencies + run: npm ci - name: Run tests run: npm test test_win: @@ -47,10 +47,10 @@ jobs: key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - - name: Install dependencies - run: npm ci - name: Install Playwright dependencies run: npx playwright install --with-deps + - name: Install dependencies + run: npm ci - name: Run tests run: npm test tag: