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 cb89f35 commit a7bf1c3Copy full SHA for a7bf1c3
1 file changed
.github/workflows/pending-changes.yml
@@ -13,7 +13,17 @@ jobs:
13
- name: Install dependencies
14
run: pnpm install --frozen-lockfile --recursive
15
16
- - name: Install Playwright browsers and dependencies
+ - name: Cache Puppeteer browsers
17
+ id: playwright-cache
18
+ uses: actions/cache@v4
19
+ with:
20
+ path: /home/runner/.cache/puppeteer
21
+ key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
22
+ restore-keys: |
23
+ ${{ runner.os }}-playwright-
24
+
25
+ - name: Install Puppeteer browsers and dependencies
26
+ if: steps.playwright-cache.outputs.cache-hit != 'true'
27
run: pnpm dlx puppeteer browsers install chrome
28
29
- uses: nickcharlton/diff-check@main
0 commit comments