From f1439d7fcbdc8ad676b37e2b7afd3d9589b594d7 Mon Sep 17 00:00:00 2001 From: Timothy Carambat Date: Wed, 11 Mar 2026 12:18:29 -0700 Subject: [PATCH] Improve build times for tests and lint (#5193) * test build skip * reset file --- .github/workflows/lint.yaml | 3 +++ .github/workflows/run-tests.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index dbda1f14..ced01d00 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -61,6 +61,9 @@ jobs: - name: Install collector dependencies run: cd collector && yarn install --frozen-lockfile + env: + PUPPETEER_SKIP_DOWNLOAD: "true" + SHARP_IGNORE_GLOBAL_LIBVIPS: "true" - name: Lint server run: cd server && yarn lint:check diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index d303809d..88343e7e 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -65,6 +65,9 @@ jobs: - name: Install collector dependencies if: steps.cache-collector.outputs.cache-hit != 'true' run: cd collector && yarn install --frozen-lockfile + env: + PUPPETEER_SKIP_DOWNLOAD: "true" + SHARP_IGNORE_GLOBAL_LIBVIPS: "true" - name: Setup environment and Prisma run: yarn setup:envs && yarn prisma:setup