Make WordPress Core

Ticket #52643: 52643.diff

File 52643.diff, 3.6 KB (added by desrosj, 5 years ago)
  • .github/workflows/coding-standards.yml

     
    11name: Coding Standards
    22
    33on:
     4  # JSHint was introduced in WordPress 3.8.
     5  # PHPCS checking was introduced in WordPress 5.1.
    46  push:
    57    branches:
    68      - master
    7       # JSHint was introduced in WordPress 3.8.
    8       # PHPCS checking was introduced in WordPress 5.1.
    99      - '3.[89]'
    1010      - '[4-9].[0-9]'
    1111    tags:
    1212      - '3.[89]*'
    1313      - '[4-9].[0-9]*'
    1414  pull_request:
     15    branches:
     16      - master
     17      - '3.[89]'
     18      - '[4-9].[0-9]'
    1519
    1620jobs:
    1721  # Runs PHP coding standards checks.
  • .github/workflows/end-to-end-tests.yml

     
    11name: End-to-end Tests
    22
    33on:
     4  # The end to end test suite was introduced in WordPress 5.3.
    45  push:
    56    branches:
    67      - master
    7       # The end to end test suite was introduced in WordPress 5.3.
    88      - '5.[3-9]'
    99      - '[6-9].[0-9]'
    1010    tags:
    1111      - '5.[3-9]*'
    1212      - '[6-9].[0-9]*'
    1313  pull_request:
     14    branches:
     15      - master
     16      - '5.[3-9]'
     17      - '[6-9].[0-9]'
    1418
    1519env:
    1620  LOCAL_DIR: build
  • .github/workflows/javascript-tests.yml

     
    11name: JavaScript Tests
    22
    33on:
     4  # JavaScript testing was introduced in WordPress 3.8.
    45  push:
    56    branches:
    67      - master
    7       # JavaScript testing was introduced in WordPress 3.8.
    88      - '3.[89]'
    99      - '[4-9].[0-9]'
    1010    tags:
    1111      - '3.[89]*'
    1212      - '[4-9].[0-9]*'
    1313  pull_request:
     14    branches:
     15      - master
     16      - '3.[89]'
     17      - '[4-9].[0-9]'
    1418
    1519jobs:
    1620  # Runs the QUnit tests for WordPress.
  • .github/workflows/php-compatibility.yml

     
    11name: PHP Compatibility
    22
    33on:
     4  # PHP compatibility testing was introduced in WordPress 5.5.
    45  push:
    56    branches:
    67      - master
    7       # The PHP compatibility testing was introduced in WordPress 5.5.
    88      - '5.[5-9]'
    99      - '[6-9].[0-9]'
    1010    tags:
    1111      - '5.[5-9]*'
    1212      - '[6-9].[0-9]*'
    1313  pull_request:
     14    branches:
     15      - master
     16      - '5.[5-9]'
     17      - '[6-9].[0-9]'
    1418
    1519jobs:
    1620
  • .github/workflows/phpunit-tests.yml

     
    1010      - '3.[7-9]*'
    1111      - '[4-9].[0-9]*'
    1212  pull_request:
     13    branches:
     14      - master
     15      - '3.[7-9]'
     16      - '[4-9].[0-9]'
    1317  # Once weekly On Sundays at 00:00 UTC.
    1418  schedule:
    1519    - cron: '0 0 * * 0'
  • .github/workflows/verify-npm-on-windows.yml

     
    77      - '3.[7-9]'
    88      - '[4-9].[0-9]'
    99  pull_request:
     10    branches:
     11      - master
     12      - '3.[7-9]'
     13      - '[4-9].[0-9]'
    1014
    1115env:
    1216  PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ true }}