[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

chore: remove puppeteer

Vladimir Sheremet (Nov 10, 2023, 1:24 PM +0100) 5cb0c735 e758e7ed

-14
-11
.github/actions/setup-and-cache/action.yml
··· 29 29 const pattern = (name) => new RegExp(name + ':\\\s+specifier: [\\\s\\\w\\\.^]+version: (\\\d+\\\.\\\d+\\\.\\\d+)'); 30 30 const cypressVersion = lockfile.match(pattern('cypress'))[1]; 31 31 const playwrightVersion = lockfile.match(pattern('playwright'))[1]; 32 - const puppeteerVersion = lockfile.match(pattern('puppeteer-core'))[1]; 33 32 console.log('CYPRESS_VERSION=' + cypressVersion); 34 33 console.log('PLAYWRIGHT_VERSION=' + playwrightVersion); 35 - console.log('PUPPETEER_VERSION=' + puppeteerVersion); 36 34 " 37 35 )" >> $GITHUB_OUTPUT 38 36 ··· 65 63 key: ${{ runner.os }}-playwright-${{ steps.resolve-package-versions.outputs.PLAYWRIGHT_VERSION }} 66 64 restore-keys: | 67 65 ${{ runner.os }}-playwright- 68 - 69 - - name: Cache Puppeteer v${{ steps.resolve-package-versions.outputs.PUPPETEER_VERSION }} 70 - uses: actions/cache@v3 71 - id: puppeteer-cache 72 - with: 73 - path: ${{ env.PUPPETEER_DOWNLOAD_PATH }} 74 - key: ${{ runner.os }}-puppeteer-${{ steps.resolve-package-versions.outputs.PUPPETEER_VERSION }} 75 - restore-keys: | 76 - ${{ runner.os }}-puppeteer-
-1
.github/workflows/ci.yml
··· 17 17 VITEST_SEGFAULT_RETRY: 3 18 18 PLAYWRIGHT_BROWSERS_PATH: ${{ github.workspace }}/.cache/ms-playwright 19 19 CYPRESS_CACHE_FOLDER: ${{ github.workspace }}/.cache/Cypress 20 - PUPPETEER_DOWNLOAD_PATH: ${{ github.workspace }}/.cache/Puppeteer 21 20 22 21 jobs: 23 22 lint:
-1
.tazerc.json
··· 1 1 { 2 2 "exclude": [ 3 3 "vue", 4 - "puppeteer", 5 4 "pretty-format" 6 5 ], 7 6 "packageMode": {
-1
scripts/update-examples.ts
··· 6 6 7 7 const noOnlinePlayground = [ 8 8 'playwright', 9 - 'puppeteer', // e2e doesn't work in StackBlitz 10 9 ] 11 10 12 11 async function run() {