We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85a582f commit 0fe3dffCopy full SHA for 0fe3dff
.github/workflows/quality.yml
@@ -45,7 +45,15 @@ jobs:
45
- name: Install
46
uses: ./.github/composite-actions/install
47
48
+ - name: Cache Playwright Browsers
49
+ uses: actions/cache@v4
50
+ id: playwright-cache
51
+ with:
52
+ path: ~/.cache/ms-playwright
53
+ key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
54
+
55
- name: Install Playwright Browsers
56
+ if: steps.playwright-cache.outputs.cache-hit != 'true'
57
run: pnpm playwright install --with-deps
58
59
- name: Run tests
0 commit comments