diff --git a/.github/workflows/ci-e2e-nextjs-app.yml b/.github/workflows/ci-e2e-nextjs-app.yml index 2ef7a0d0690..401b6144f3d 100644 --- a/.github/workflows/ci-e2e-nextjs-app.yml +++ b/.github/workflows/ci-e2e-nextjs-app.yml @@ -85,7 +85,9 @@ jobs: run: | yarn install --immutable env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 - name: Create and seed test database working-directory: packages/db-main-prisma diff --git a/.github/workflows/ci-e2e-prisma.yml b/.github/workflows/ci-e2e-prisma.yml index 2f38072ce4b..9e9abb2a372 100644 --- a/.github/workflows/ci-e2e-prisma.yml +++ b/.github/workflows/ci-e2e-prisma.yml @@ -63,6 +63,10 @@ jobs: - name: Install dependencies run: | yarn install --immutable + env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 - name: E2E prisma working-directory: packages/db-main-prisma diff --git a/.github/workflows/ci-monorepo-integrity.yml b/.github/workflows/ci-monorepo-integrity.yml index 0da86648d0e..18caac74445 100644 --- a/.github/workflows/ci-monorepo-integrity.yml +++ b/.github/workflows/ci-monorepo-integrity.yml @@ -52,6 +52,10 @@ jobs: - name: Install dependencies run: | yarn install --immutable + env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 - name: Check for duplicate dependencies in lock file run: | diff --git a/.github/workflows/ci-nextjs-app.yml b/.github/workflows/ci-nextjs-app.yml index 64912e870d4..f648fcacc9e 100644 --- a/.github/workflows/ci-nextjs-app.yml +++ b/.github/workflows/ci-nextjs-app.yml @@ -74,7 +74,9 @@ jobs: run: | yarn install --immutable env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 - name: Typecheck working-directory: apps/nextjs-app diff --git a/.github/workflows/ci-packages.yml b/.github/workflows/ci-packages.yml index ed1d50d7e3b..e4cd4897395 100644 --- a/.github/workflows/ci-packages.yml +++ b/.github/workflows/ci-packages.yml @@ -75,6 +75,10 @@ jobs: - name: Install dependencies run: | yarn install --immutable + env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 # Typecheck packages that have changed + packages and apps that depends on them (--from & --since) # That allows to see if we're introducing "surface" regressions (just the types) diff --git a/.github/workflows/ci-remix-app.yml b/.github/workflows/ci-remix-app.yml index bac7f18b88b..ca21e220e0e 100644 --- a/.github/workflows/ci-remix-app.yml +++ b/.github/workflows/ci-remix-app.yml @@ -58,6 +58,10 @@ jobs: - name: Install dependencies run: | yarn install --immutable + env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 - name: Typecheck working-directory: apps/remix-app diff --git a/.github/workflows/ci-vite-app.yml b/.github/workflows/ci-vite-app.yml index db6226a90f6..58c8951f57f 100644 --- a/.github/workflows/ci-vite-app.yml +++ b/.github/workflows/ci-vite-app.yml @@ -58,6 +58,10 @@ jobs: - name: Install dependencies run: | yarn install --immutable + env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 + HUSKY: 0 - name: Typecheck working-directory: apps/vite-app diff --git a/.github/workflows/release-or-version-pr.yml b/.github/workflows/release-or-version-pr.yml index 61aad4d2866..a339eac9770 100644 --- a/.github/workflows/release-or-version-pr.yml +++ b/.github/workflows/release-or-version-pr.yml @@ -39,9 +39,12 @@ jobs: restore-keys: | yarn-cache-folder- - - name: Install Dependencies - run: yarn install --immutable + - name: Install dependencies + run: | + yarn install --immutable env: + PRISMA_SKIP_POSTINSTALL_GENERATE: true + PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 HUSKY: 0 # @link https://github.com/changesets/action