Skip to content

Commit

Permalink
chore: reorder dependency installation steps in deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpmule committed Dec 9, 2024
1 parent ead3bfc commit c679983
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit c679983

Please sign in to comment.