We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eddda9 commit ed05fabCopy full SHA for ed05fab
1 file changed
.github/workflows/test.yml
@@ -132,10 +132,14 @@ jobs:
132
path: ${{ github.workspace }}/.playwright-browsers
133
key: ${{ runner.os }}-${{ runner.arch }}-playwright-${{ steps.playwright-version.outputs.version }}-chromium
134
135
- - name: Install Playwright browsers (with system deps)
+ - name: Install Playwright system dependencies
136
+ working-directory: packages/app
137
+ run: sudo bunx playwright install-deps chromium
138
+
139
+ - name: Install Playwright browsers
140
if: steps.playwright-cache.outputs.cache-hit != 'true'
141
working-directory: packages/app
- run: bunx playwright install --with-deps chromium
142
+ run: bunx playwright install chromium
143
144
- name: Run app e2e tests
145
run: bun --cwd packages/app test:e2e:local
0 commit comments