File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ permissions:
1111jobs :
1212 e2e :
1313 runs-on : ubuntu-latest
14+ timeout-minutes : 20
1415 steps :
1516 - uses : actions/checkout@v5
1617
2829 path : ~/.cache/ms-playwright
2930 key : playwright-chromium-${{ runner.os }}-${{ hashFiles('app/packages/web/package-lock.json', 'package-lock.json') }}
3031
31- - name : Install Playwright browsers
32- run : npx playwright install chromium --with- deps
32+ - name : Install Playwright system dependencies
33+ run : DEBIAN_FRONTEND=noninteractive npx playwright install- deps chromium
3334 working-directory : app/packages/web
35+ timeout-minutes : 5
36+
37+ - name : Install Playwright browser binaries
38+ run : npx playwright install chromium
39+ working-directory : app/packages/web
40+ timeout-minutes : 5
3441
3542 - run : npm run app:test:e2e
3643
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ permissions:
1111jobs :
1212 integration :
1313 runs-on : ubuntu-latest
14+ timeout-minutes : 20
1415 steps :
1516 - uses : actions/checkout@v5
1617
2829 path : ~/.cache/ms-playwright
2930 key : playwright-chromium-${{ runner.os }}-${{ hashFiles('app/packages/web/package-lock.json', 'package-lock.json') }}
3031
31- - name : Install Playwright browsers
32- run : npx playwright install chromium --with- deps
32+ - name : Install Playwright system dependencies
33+ run : DEBIAN_FRONTEND=noninteractive npx playwright install- deps chromium
3334 working-directory : app/packages/web
35+ timeout-minutes : 5
36+
37+ - name : Install Playwright browser binaries
38+ run : npx playwright install chromium
39+ working-directory : app/packages/web
40+ timeout-minutes : 5
3441
3542 - run : npm run app:test:integration
3643
You can’t perform that action at this time.
0 commit comments