fix: Add install step for playwright binaries (#16945)

This commit is contained in:
shortstacked
2025-07-07 11:50:01 +01:00
committed by GitHub
parent f817fb4e74
commit 05360cee79
4 changed files with 13 additions and 3 deletions

View File

@@ -143,11 +143,19 @@
"cache": false,
"persistent": true
},
"install-browsers": {
"install-browsers:ci": {
"cache": true,
"inputs": ["package.json"],
"outputs": ["ms-playwright-cache/**"],
"env": ["PLAYWRIGHT_BROWSERS_PATH"]
},
"install-browsers:local": {
"cache": false,
"inputs": ["package.json"]
},
"test:standard": {
"dependsOn": ["install-browsers:local"],
"cache": false
}
}
}