Playwright tests: only run on windows, because mac keeps failing or being too slow

This commit is contained in:
Ronan Jouchet 2022-04-26 19:55:30 -04:00
parent 339fbfb933
commit 887347adbb
1 changed files with 1 additions and 1 deletions

View File

@ -47,6 +47,6 @@ jobs:
run: npm run lint
- run: npm run test -- --testPathIgnorePatterns ".*playwright.*"
- name: Playwright tests
if: matrix.platform != 'ubuntu-latest' # Doesn't work on non-GUI ubuntu
if: matrix.platform == 'windows-latest' # Doesn't work on headless ubuntu, and is slow on mac
run: npm run test:playwright
timeout-minutes: 5