From: Evan You Date: Mon, 14 Nov 2022 11:21:58 +0000 (+0800) Subject: ci: skip chromium download in jobs that do not need it X-Git-Tag: v3.2.46~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b59f2a01259ef834486a5fa3b7e3038a9208b0c;p=thirdparty%2Fvuejs%2Fcore.git ci: skip chromium download in jobs that do not need it --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b59ecfede..daad5609d1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: node-version: 18 cache: 'pnpm' - - run: pnpm install + - run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install - name: Run unit tests run: pnpm run test-unit @@ -69,7 +69,7 @@ jobs: node-version: 18 cache: 'pnpm' - - run: pnpm install + - run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install - name: Run eslint run: pnpm run lint @@ -96,7 +96,7 @@ jobs: node-version: 18 cache: 'pnpm' - - run: pnpm install + - run: PUPPETEER_SKIP_DOWNLOAD=1 pnpm install - run: pnpm run size # - name: Check build size