Skip to content

Commit 7df822f

Browse files
committed
chore: Reorder Playwright browser installation in GitHub Actions workflow
- Moved the installation of Playwright browsers to occur after dependency installation for improved workflow clarity and execution order.
1 parent 4e1a02f commit 7df822f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
with:
2828
node-version: 18
2929
cache: 'npm'
30-
- name: Install Playwright Browsers
31-
run: npx playwright install --with-deps
3230
- name: Install dependencies
3331
run: npm ci
32+
- name: Install Playwright Browsers
33+
run: npx playwright install --with-deps
3434
- name: Run tests
3535
run: npm test
3636
# test_win:

0 commit comments

Comments
 (0)