Skip to content

Commit

Permalink
chore: remove puppeteer
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Nov 10, 2023
1 parent e758e7e commit 5cb0c73
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 14 deletions.
11 changes: 0 additions & 11 deletions .github/actions/setup-and-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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-
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion .tazerc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"exclude": [
"vue",
"puppeteer",
"pretty-format"
],
"packageMode": {
Expand Down
1 change: 0 additions & 1 deletion scripts/update-examples.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { notNullish } from '../packages/vitest/src/utils'

const noOnlinePlayground = [
'playwright',
'puppeteer', // e2e doesn't work in StackBlitz
]

async function run() {
Expand Down

0 comments on commit 5cb0c73

Please sign in to comment.