Skip to content

Commit e190c52

Browse files
committed
Fix: Remove pnpm version conflict in GitHub Actions
Remove explicit version specification from workflow to avoid conflict with packageManager field in package.json
1 parent df6d229 commit e190c52

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/playwright.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@ jobs:
1717
BASE_URL_TESTING: ${{ vars.BASE_URL_TESTING }}
1818
REUSE_SERVER: 'true'
1919
steps:
20-
- uses: actions/checkout@v3
21-
- uses: pnpm/action-setup@v4
22-
with:
23-
version: 10
24-
- uses: actions/setup-node@v3
20+
- uses: actions/checkout@v4
21+
- uses: pnpm/[email protected]
22+
- uses: actions/setup-node@v4
2523
with:
2624
cache: 'pnpm'
2725
- name: Install dependencies

0 commit comments

Comments
 (0)