-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
chore: windows bots via github actions #678
Conversation
/rebase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shots fired!
"coverage": "cross-env COVERAGE=true npm run unit", | ||
"fcoverage": "cross-env COVERAGE=true BROWSER=firefox npm run unit", | ||
"wcoverage": "cross-env COVERAGE=true BROWSER=webkit npm run unit", | ||
"ccoverage": "cross-env COVERAGE=true npm run ctest", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
npm test is failing:
> playwright-core@0.11.1-post test /Users/aes/sandbox/playwright
> npm run lint --silent && npm run coverage && npm run test-doclint && node utils/testrunner/test/test.js
0 failures, 0 warnings.
DocLint Finished in 7.388 seconds
npm ERR! missing script: coverage
npm ERR!
npm ERR! Did you mean one of these?
npm ERR! ccoverage
npm ERR! fcoverage
npm ERR! wcoverage
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/aes/.npm/_logs/2020-02-18T23_57_11_890Z-debug.log
npm ERR! Test failed. See above for more details.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should test script be changed to:
"test": "npm run lint --silent && npm run ccoverage && npm run test-doclint && node utils/testrunner/test/test.js",
Mac will come in a follow up!
As a drive-by, removed
npm build
everywhere, becausenpm install
already runs build.