Changeset 62253
- Timestamp:
- 04/21/2026 05:24:23 PM (2 weeks ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 12 edited
-
end-to-end-tests.yml (modified) (1 diff)
-
phpunit-tests.yml (modified) (2 diffs)
-
reusable-coding-standards-javascript.yml (modified) (1 diff)
-
reusable-performance-test-v2.yml (modified) (1 diff)
-
reusable-performance.yml (modified) (1 diff)
-
reusable-phpunit-tests-v1.yml (modified) (2 diffs)
-
reusable-phpunit-tests-v2.yml (modified) (1 diff)
-
reusable-phpunit-tests-v3.yml (modified) (1 diff)
-
reusable-test-core-build-process.yml (modified) (1 diff)
-
reusable-test-gutenberg-build-process.yml (modified) (1 diff)
-
reusable-test-local-docker-environment-v1.yml (modified) (1 diff)
-
test-coverage.yml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/end-to-end-tests.yml
r62095 r62253 54 54 env: 55 55 LOCAL_DIR: build 56 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}56 PUPPETEER_SKIP_DOWNLOAD: true 57 57 58 58 jobs: -
trunk/.github/workflows/phpunit-tests.yml
r62251 r62253 182 182 memcached: ${{ matrix.memcached }} 183 183 phpunit-config: ${{ matrix.multisite && 'tests/phpunit/multisite.xml' || 'phpunit.xml.dist' }} 184 report: ${{ false }}184 report: false 185 185 186 186 # … … 230 230 memcached: ${{ matrix.memcached }} 231 231 phpunit-config: ${{ matrix.multisite && 'tests/phpunit/multisite.xml' || 'phpunit.xml.dist' }} 232 report: ${{ false }}232 report: false 233 233 234 234 # -
trunk/.github/workflows/reusable-coding-standards-javascript.yml
r62033 r62253 8 8 9 9 env: 10 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}10 PUPPETEER_SKIP_DOWNLOAD: true 11 11 12 12 # Disable permissions for all available scopes by default. -
trunk/.github/workflows/reusable-performance-test-v2.yml
r62033 r62253 50 50 51 51 env: 52 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}52 PUPPETEER_SKIP_DOWNLOAD: true 53 53 54 54 # Prevent wp-scripts from downloading extra Playwright browsers, -
trunk/.github/workflows/reusable-performance.yml
r62033 r62253 38 38 39 39 env: 40 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}40 PUPPETEER_SKIP_DOWNLOAD: true 41 41 42 42 # Prevent wp-scripts from downloading extra Playwright browsers, -
trunk/.github/workflows/reusable-phpunit-tests-v1.yml
r62053 r62253 51 51 default: false 52 52 env: 53 COMPOSER_INSTALL: ${{ false }}53 COMPOSER_INSTALL: false 54 54 LOCAL_PHP: ${{ inputs.php }}-fpm 55 55 LOCAL_PHPUNIT: ${{ inputs.phpunit && inputs.phpunit || inputs.php }}-fpm … … 57 57 PHPUNIT_CONFIG: ${{ inputs.phpunit-config }} 58 58 PHPUNIT_SCRIPT: php 59 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}59 PUPPETEER_SKIP_DOWNLOAD: true 60 60 SLOW_TESTS: 'external-http,media' 61 61 -
trunk/.github/workflows/reusable-phpunit-tests-v2.yml
r62053 r62253 59 59 LOCAL_PHP_MEMCACHED: ${{ inputs.memcached }} 60 60 PHPUNIT_CONFIG: ${{ inputs.phpunit-config }} 61 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}61 PUPPETEER_SKIP_DOWNLOAD: true 62 62 # Controls which npm script to use for running PHPUnit tests. Options ar `php` and `php-composer`. 63 63 PHPUNIT_SCRIPT: php -
trunk/.github/workflows/reusable-phpunit-tests-v3.yml
r62053 r62253 90 90 LOCAL_WP_TESTS_DOMAIN: ${{ inputs.tests-domain }} 91 91 PHPUNIT_CONFIG: ${{ inputs.phpunit-config }} 92 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}92 PUPPETEER_SKIP_DOWNLOAD: true 93 93 94 94 # Disable permissions for all available scopes by default. -
trunk/.github/workflows/reusable-test-core-build-process.yml
r62033 r62253 39 39 40 40 env: 41 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}41 PUPPETEER_SKIP_DOWNLOAD: true 42 42 NODE_OPTIONS: --max-old-space-size=4096 43 43 -
trunk/.github/workflows/reusable-test-gutenberg-build-process.yml
r62033 r62253 20 20 env: 21 21 GUTENBERG_DIRECTORY: ${{ inputs.directory == 'build' && 'build' || 'src' }}/wp-content/plugins/gutenberg 22 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}22 PUPPETEER_SKIP_DOWNLOAD: true 23 23 NODE_OPTIONS: '--max-old-space-size=8192' 24 24 -
trunk/.github/workflows/reusable-test-local-docker-environment-v1.yml
r62033 r62253 46 46 LOCAL_PHP_MEMCACHED: ${{ inputs.memcached }} 47 47 LOCAL_WP_TESTS_DOMAIN: ${{ inputs.tests-domain }} 48 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}48 PUPPETEER_SKIP_DOWNLOAD: true 49 49 50 50 # Disable permissions for all available scopes by default. -
trunk/.github/workflows/test-coverage.yml
r61209 r62253 41 41 LOCAL_PHP_XDEBUG: true 42 42 LOCAL_PHP_XDEBUG_MODE: 'coverage' 43 LOCAL_PHP_MEMCACHED: ${{ false }}44 PUPPETEER_SKIP_DOWNLOAD: ${{ true }}43 LOCAL_PHP_MEMCACHED: false 44 PUPPETEER_SKIP_DOWNLOAD: true 45 45 46 46 jobs:
Note: See TracChangeset
for help on using the changeset viewer.