Remove Playwright tests from Lint CI action (#8108)

Disables visual tests, because they are occasionally flaky (e.g. the recent issues with lint CI action).
This is very bad as it would cause every PR to (potentially) cause other PRs to fail, if the flaky test is not caught in the CI runs in the offending PR.

# Important Notes
None
This commit is contained in:
somebody1234 2023-10-23 22:11:10 +10:00 committed by GitHub
parent 1114a9bcff
commit 03b7613e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,9 @@
"build": "tsx bundle.ts",
"watch": "tsx watch.ts",
"start": "tsx start.ts",
"test": "npx --yes playwright install && npm run test-unit && npm run test-component && npm run test-e2e-and-log",
"test": "npm run test-unit",
"test-unit": "playwright test",
"test-browsers": "npx --yes playwright install && npm run test-component && npm run test-e2e-and-log",
"test-component": "playwright test -c playwright-component.config.ts",
"test-e2e": "npx playwright test -c playwright-e2e.config.ts",
"test-e2e-and-log": "npm run test-e2e || npx tsx log-screenshot-diffs.ts"