Download Playwright when `node_modules` are restored from cache

pull/2772/head
Alex Dima 3 years ago
parent a21839d00d
commit f84185f497
No known key found for this signature in database
GPG Key ID: 39563C1504FDD0C9

@ -29,6 +29,10 @@ jobs:
if: ${{ steps.cacheNodeModules.outputs.cache-hit != 'true' }}
run: npm install --prefix webpack-plugin
- name: Download Playwright
if: ${{ steps.cacheNodeModules.outputs.cache-hit == 'true' }}
run: npm run playwright-install
- name: Check prettier
run: npm run prettier-check

@ -6,21 +6,22 @@
"author": "Microsoft Corporation",
"license": "MIT",
"scripts": {
"simpleserver": "gulp simpleserver",
"import-typescript": "node ./build/importTypescript",
"watch": "tsc -w -p ./src",
"test": "node ./test/unit/all.js",
"smoketest": "node ./test/smoke/runner.js",
"smoketest-debug": "node ./test/smoke/runner.js --debug-tests",
"release": "node ./build/build && gulp release",
"website": "gulp build-website && npm run typedoc && gulp prepare-website-branch",
"build-website": "gulp build-website && npm run typedoc",
"typedoc": "cd monaco-editor/typedoc && \"../../node_modules/.bin/typedoc\" --options ./typedoc.json",
"prettier": "prettier --write .",
"gulp": "node ./node_modules/gulp/bin/gulp.js",
"import-typescript": "node ./build/importTypescript.js",
"playwright-install": "node ./node_modules/playwright/install.js",
"postinstall": "node build/postinstall.js",
"prettier-check": "prettier --check .",
"prettier": "prettier --write .",
"pretty-quick": "pretty-quick --staged",
"gulp": "node ./node_modules/gulp/bin/gulp.js",
"postinstall": "node build/postinstall.js"
"release": "node ./build/build.js && gulp release",
"simpleserver": "gulp simpleserver",
"smoketest-debug": "node ./test/smoke/runner.js --debug-tests",
"smoketest": "node ./test/smoke/runner.js",
"test": "node ./test/unit/all.js",
"typedoc": "cd monaco-editor/typedoc && \"../../node_modules/.bin/typedoc\" --options ./typedoc.json",
"watch": "tsc -w -p ./src",
"website": "gulp build-website && npm run typedoc && gulp prepare-website-branch"
},
"typings": "./esm/vs/editor/editor.api.d.ts",
"module": "./esm/vs/editor/editor.main.js",

Loading…
Cancel
Save