diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index dbda1f14c7d..ced01d00f47 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 d303809d590..88343e7e95e 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