Make WordPress Core


Ignore:
Timestamp:
02/12/2021 08:58:21 PM (4 years ago)
Author:
desrosj
Message:

Build/Test Tools: Restore automated testing in the 3.7 branch.

This commit merges the workflow files required to run automated testing on GitHub Actions.

In addition, [49836] and [50285] have been included in order to keep the local Docker environment consistent across all branches.

Merges [49162,49168-49169,49175,49204,49227-49228,49244,49369,49371,49548,49781-49784,49786,49836,49938,50268,50285,50298] to the 3.7 branch.
See #50401.

Location:
branches/3.7
Files:
1 added
2 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.7

  • branches/3.7/.github/workflows/coding-standards.yml

    r49162 r50324  
    55    branches:
    66      - master
     7      # JSHint was introduced in WordPress 3.8.
    78      # PHPCS checking was introduced in WordPress 5.1.
    8       - '5.[1-9]'
    9       - '[6-9].*'
     9      - '3.[89]'
     10      - '[4-9].[0-9]'
     11    tags:
     12      - '3.[89]*'
     13      - '[4-9].[0-9]*'
    1014  pull_request:
    1115
     
    1721  # Performs the following steps:
    1822  # - Checks out the repository.
    19   # - Configures caching for Composer.
    2023  # - Sets up PHP.
    2124  # - Logs debug information.
    22   # - Installs Composer dependencies (from cache if possible).
     25  # - Installs Composer dependencies (use cache if possible).
     26  # - Make Composer packages available globally.
    2327  # - Logs PHP_CodeSniffer debug information.
    2428  # - Runs PHPCS on the full codebase with warnings suppressed.
     
    2832    name: PHP coding standards
    2933    runs-on: ubuntu-latest
     34    if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}
     35
    3036    steps:
    3137      - name: Checkout repository
    3238        uses: actions/checkout@v2
    33 
    34       - name: Get Composer cache directory
    35         id: composer-cache
    36         run: echo "::set-output name=dir::$(composer config cache-files-dir)"
    37 
    38       - name: Set up Composer caching
    39         uses: actions/cache@v2
    40         env:
    41           cache-name: cache-composer-dependencies
    42         with:
    43           path: ${{ steps.composer-cache.outputs.dir }}
    44           key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
    45           restore-keys: |
    46             ${{ runner.os }}-composer-
    4739
    4840      - name: Set up PHP
     
    5951
    6052      - name: Install Composer dependencies
    61         run: |
    62           composer install --prefer-dist --no-suggest --no-progress --no-ansi --no-interaction
    63           echo "vendor/bin" >> $GITHUB_PATH
     53        uses: ramsey/composer-install@v1
     54        with:
     55          composer-options: "--no-progress --no-ansi --no-interaction"
     56
     57      - name: Make Composer packages available globally
     58        run: echo "${PWD}/vendor/bin" >> $GITHUB_PATH
    6459
    6560      - name: Log PHPCS debug information
     
    6762
    6863      - name: Run PHPCS on all Core files
    69         run: vendor/bin/phpcs -q -n --report=checkstyle | cs2pr
     64        run: phpcs -q -n --report=checkstyle | cs2pr
    7065
    7166      - name: Check test suite files for warnings
    72         run: vendor/bin/phpcs tests -q --report=checkstyle | cs2pr
     67        run: phpcs tests -q --report=checkstyle | cs2pr
    7368
    7469  # Runs the JavaScript coding standards checks.
     70  #
     71  # JSHint violations are not currently reported inline with annotations.
    7572  #
    7673  # Performs the following steps:
    7774  # - Checks out the repository.
    7875  # - Logs debug information about the runner container.
    79   # - Installs NodeJS 12 (todo: install the version of NPM specified in the `.nvmrc` file to support older branches)
     76  # - Installs NodeJS 14.
    8077  # - Sets up caching for NPM.
    8178  # - Logs updated debug information.
    82   # _ Installs NPM dependencies.
     79  # _ Installs NPM dependencies using install-changed to hash the `package.json` file.
    8380  # - Run the WordPress JSHint checks.
    8481  # - todo: Configure Slack notifications for failing tests.
     
    8683    name: JavaScript coding standards
    8784    runs-on: ubuntu-latest
     85    if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}
     86    env:
     87      PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ true }}
     88
    8889    steps:
    8990      - name: Checkout repository
     
    100101        uses: actions/setup-node@v1
    101102        with:
    102           node-version: 12
     103          node-version: 14
    103104
    104105      - name: Cache NodeJS modules
     
    119120
    120121      - name: Install Dependencies
    121         run: npm ci
     122        run: npx install-changed --install-command="npm ci"
    122123
    123124      - name: Run JSHint
Note: See TracChangeset for help on using the changeset viewer.