We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 628dbaf commit ddef3ebCopy full SHA for ddef3eb
.github/workflows/ci.yml
@@ -42,7 +42,8 @@ jobs:
42
run: pnpm install
43
- name: Print put node & npm version
44
run: node --version && pnpm --version
45
+ # Pin the version of Playwright to match package.json to avoid installing a newer version which may expect different binaries
46
- name: Install chromium
- run: npx playwright install chromium
47
+ run: npx playwright@1.50.1 install chromium
48
- name: Run unit test
49
run: pnpm run test
packages/less/package.json
@@ -84,7 +84,7 @@
84
"less-plugin-clean-css": "^1.6.0",
85
"minimist": "^1.2.0",
86
"mocha": "^6.2.1",
87
- "playwright": "^1.49.0",
+ "playwright": "~1.50.1",
88
"mocha-teamcity-reporter": "^3.0.0",
89
"nock": "^11.8.2",
90
"npm-run-all": "^4.1.5",
0 commit comments