Skip to content

Commit 2273ad1

Browse files
authored
ci: Remove playwright caching (seems to be broken) (#1430)
1 parent ff195c8 commit 2273ad1

File tree

1 file changed

+2
-13
lines changed

1 file changed

+2
-13
lines changed

.github/workflows/main.yml

+2-13
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,8 @@ jobs:
2424
path: ${{ github.workspace }}/examples/*/.next/cache
2525
key: ${{ runner.os }}-nextjs-${{ hashFiles('pnpm-lock.yaml') }}
2626

27-
# Playwright
28-
- run: |
29-
PLAYWRIGHT_VERSION=$(cat pnpm-lock.yaml | grep /@playwright/test@ | sed 's/.*@\([^:]*\):.*/\1/')
30-
echo "PLAYWRIGHT_VERSION=$PLAYWRIGHT_VERSION" >> $GITHUB_ENV
31-
- uses: actions/cache@v4
32-
name: Restore playwright
33-
id: cache-playwright-browsers
34-
with:
35-
path: ~/.cache/ms-playwright
36-
key: playwright-browsers-${{ env.PLAYWRIGHT_VERSION }}
37-
- if: steps.cache-playwright-browsers.outputs.cache-hit != 'true'
38-
# Setting up playwright in one example is sufficient
39-
run: pnpm --filter example-app-router-playground exec playwright install --with-deps
27+
# Setting up playwright in one example is sufficient
28+
- run: pnpm --filter example-app-router-playground exec playwright install --with-deps
4029

4130
- run: pnpm run build
4231
- run: pnpm run lint

0 commit comments

Comments
 (0)