From 051205d5a94e12281161698a513c0912850c5ae6 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Fri, 16 Jun 2023 15:46:12 +0800 Subject: [PATCH] chore(workflows): remove Cache playwright pnpm modules --- .github/workflows/playwright-test-workflow.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/playwright-test-workflow.yml b/.github/workflows/playwright-test-workflow.yml index 6aabee845d..66dc3c5fea 100644 --- a/.github/workflows/playwright-test-workflow.yml +++ b/.github/workflows/playwright-test-workflow.yml @@ -77,13 +77,6 @@ jobs: run: | pnpm install pnpm run watch:run:playwright > ${{ inputs.db }}_${{ inputs.shard }}_test_backend.log & - - name: Cache playwright pnpm modules - uses: actions/cache@v3 - id: playwright-cache - with: - path: | - **/tests/playwright/node_modules - key: cache-nc-playwright-${{ hashFiles('**/tests/playwright/package-lock.json') }} - name: Install dependencies if: steps.playwright-cache.outputs.cache-hit != 'true' working-directory: ./tests/playwright @@ -97,7 +90,6 @@ jobs: printf '.' sleep 2 done - - name: Run Playwright tests working-directory: ./tests/playwright run: E2E_DB_TYPE=${{ inputs.db }} pnpm run ci:test:shard:${{ inputs.shard }}