We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eda5ed commit fd797a4Copy full SHA for fd797a4
1 file changed
.github/workflows/ci-testing.yml
@@ -14,8 +14,9 @@ jobs:
14
with:
15
node-version: 22
16
cache: npm
17
- - run: sudo apt-get install xvfb
18
- run: npm ci
+ env:
19
+ PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1
20
- name: Cache Playwright browsers
21
id: playwright-cache
22
uses: actions/cache@v4
@@ -26,8 +27,7 @@ jobs:
26
27
if: steps.playwright-cache.outputs.cache-hit != 'true'
28
- run: npx playwright install-deps
29
if: steps.playwright-cache.outputs.cache-hit == 'true'
- - run: npm install -g grunt-cli
30
- - run: grunt default
+ - run: npx grunt default
31
- run: xvfb-run --auto-servernum -- npx playwright test --grep-invert="popupTabNavigation\.test\.js|layerContextMenuKeyboard\.test\.js" --workers=1 --retries=3
32
env:
33
CI: true
0 commit comments