Skip to content

Commit 13fa720

Browse files
committed
Update dependencies in package.json and package-lock.json, downgrading Playwright to version 1.25.2 and web-test-runner to version 0.13.15. Remove unnecessary Playwright browser installation steps from the GitHub Actions workflow to streamline the testing process.
1 parent d64eda2 commit 13fa720

File tree

4 files changed

+1144
-1134
lines changed

4 files changed

+1144
-1134
lines changed

.github/workflows/deployment.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
run: |
3535
rm -f package-lock.json
3636
npm install
37-
- name: Install Playwright Browsers
38-
run: npx playwright install --with-deps
3937
- name: Run tests
4038
run: npm test
4139
test_win:
@@ -59,12 +57,8 @@ jobs:
5957
- name: Install dependencies
6058
run: |
6159
if (Test-Path package-lock.json) { del package-lock.json }
62-
npm ci
60+
npm install
6361
shell: pwsh
64-
- name: Install Playwright Browsers
65-
run: npx playwright install --with-deps
66-
- name: Generate API models
67-
run: npm run prepare
6862
- name: Run tests
6963
run: npm test
7064
tag:

0 commit comments

Comments
 (0)