Skip to content

Commit 2ef975e

Browse files
committed
Try to set PUPPETEER_CACHE_DIR env var
1 parent a6354fa commit 2ef975e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
needs: build
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
43+
PUPPETEER_CACHE_DIR: ${{ github.workspace }}/.cache/puppeteer
4344
steps:
4445
- uses: actions/checkout@v5
4546

4647
- uses: actions/cache@v4
4748
id: puppeteer
4849
with:
49-
path: |
50-
"/home/runner/.cache/puppeteer"
50+
path: "${{ github.workspace }}/.cache/puppeteer"
5151
key: "puppeteer-${{ hashFiles('pnpm-lock.yaml') }}"
5252

5353
- uses: pnpm/action-setup@v4

0 commit comments

Comments
 (0)