Make WordPress Core


Ignore:
Timestamp:
10/17/2023 11:27:24 AM (17 months ago)
Author:
swissspidy
Message:

Build/Test Tools: Reinstate PUPPETEER_SKIP_DOWNLOAD for most CI workflows.

The PUPPETEER_SKIP_DOWNLOAD environment variable is used to prevent Puppeteer from automatically downloading browser binaries.
It was removed in [56926] due to the migration to Playwright. However, because of the QUnit tests, Puppeteer is actually still a dependency.

Until those tests change, we have to keep this environment variable to prevent unnecessary downloads on CI.

Props SergeyBiryukov.
Fixes #59517.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/coding-standards.yml

    r56926 r56954  
    143143    timeout-minutes: 20
    144144    if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}
     145    env:
     146      PUPPETEER_SKIP_DOWNLOAD: ${{ true }}
    145147
    146148    steps:
Note: See TracChangeset for help on using the changeset viewer.