diff --git a/.github/actions/setup-and-cache/action.yml b/.github/actions/setup-and-cache/action.yml index 54eaefaa9a09..df8472117a47 100644 --- a/.github/actions/setup-and-cache/action.yml +++ b/.github/actions/setup-and-cache/action.yml @@ -29,10 +29,8 @@ runs: const pattern = (name) => new RegExp(name + ':\\\s+specifier: [\\\s\\\w\\\.^]+version: (\\\d+\\\.\\\d+\\\.\\\d+)'); const cypressVersion = lockfile.match(pattern('cypress'))[1]; const playwrightVersion = lockfile.match(pattern('playwright'))[1]; - const puppeteerVersion = lockfile.match(pattern('puppeteer-core'))[1]; console.log('CYPRESS_VERSION=' + cypressVersion); console.log('PLAYWRIGHT_VERSION=' + playwrightVersion); - console.log('PUPPETEER_VERSION=' + puppeteerVersion); " )" >> $GITHUB_OUTPUT @@ -65,12 +63,3 @@ runs: key: ${{ runner.os }}-playwright-${{ steps.resolve-package-versions.outputs.PLAYWRIGHT_VERSION }} restore-keys: | ${{ runner.os }}-playwright- - - - name: Cache Puppeteer v${{ steps.resolve-package-versions.outputs.PUPPETEER_VERSION }} - uses: actions/cache@v3 - id: puppeteer-cache - with: - path: ${{ env.PUPPETEER_DOWNLOAD_PATH }} - key: ${{ runner.os }}-puppeteer-${{ steps.resolve-package-versions.outputs.PUPPETEER_VERSION }} - restore-keys: | - ${{ runner.os }}-puppeteer- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 40f16d68efae..92eb17644664 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,6 @@ env: VITEST_SEGFAULT_RETRY: 3 PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/.cache/ms-playwright CYPRESS_CACHE_FOLDER: ${{ github.workspace }}/.cache/Cypress - PUPPETEER_DOWNLOAD_PATH: ${{ github.workspace }}/.cache/Puppeteer jobs: lint: diff --git a/.tazerc.json b/.tazerc.json index d470b5832072..fd46acea9ce0 100644 --- a/.tazerc.json +++ b/.tazerc.json @@ -1,7 +1,6 @@ { "exclude": [ "vue", - "puppeteer", "pretty-format" ], "packageMode": { diff --git a/scripts/update-examples.ts b/scripts/update-examples.ts index b2fa1f7644e7..630e22b5618b 100644 --- a/scripts/update-examples.ts +++ b/scripts/update-examples.ts @@ -6,7 +6,6 @@ import { notNullish } from '../packages/vitest/src/utils' const noOnlinePlayground = [ 'playwright', - 'puppeteer', // e2e doesn't work in StackBlitz ] async function run() {