Skip to content

fix(ci): revise playwright install for CI #4322

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
run: pnpm install
- name: Print put node & npm version
run: node --version && pnpm --version
# Pin the version of Playwright to match package.json to avoid installing a newer version which may expect different binaries
- name: Install chromium
run: npx playwright install chromium
run: npx playwright@1.50.1 install chromium
- name: Run unit test
run: pnpm run test
2 changes: 1 addition & 1 deletion packages/less/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
"less-plugin-clean-css": "^1.6.0",
"minimist": "^1.2.0",
"mocha": "^6.2.1",
"playwright": "^1.49.0",
"playwright": "~1.50.1",
"mocha-teamcity-reporter": "^3.0.0",
"nock": "^11.8.2",
"npm-run-all": "^4.1.5",
Expand Down
Loading