From e4c004d3c12035e1d41104eece54c68e643f7baa Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Sat, 6 May 2023 19:57:06 +0200 Subject: [PATCH] Speed up playwright install --- .github/workflows/ci.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c727ad4..7c1d2f2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -40,12 +40,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - uses: actions/cache@v3 - with: - path: ~/.cache/ms-playwright - key: playwright-${{ hashFiles('package-lock.json') }} - run: npm ci - - run: npx playwright install --with-deps + - run: npx playwright install --with-deps chromium - run: npm test - uses: actions/upload-artifact@v3 if: always()