Changeset 53604 for branches/5.1
- Timestamp:
- 06/30/2022 04:41:47 PM (3 years ago)
- Location:
- branches/5.1
- Files:
-
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.1
- Property svn:mergeinfo changed
/trunk merged: 50704,50796,50930,51341,51355,51498,51511,51535,51921,51924-51925,51937,52002,52130,52183,52233,53112,53581-53582,53592
- Property svn:mergeinfo changed
-
branches/5.1/.github/workflows/coding-standards.yml
r50622 r53604 6 6 push: 7 7 branches: 8 - master9 8 - trunk 10 9 - '3.[89]' … … 15 14 pull_request: 16 15 branches: 17 - master18 16 - trunk 19 17 - '3.[89]' … … 35 33 workflow_dispatch: 36 34 35 # Cancels all previous workflow runs for pull requests that have not completed. 36 concurrency: 37 # The concurrency group contains the workflow name and the branch name for pull requests 38 # or the commit hash for any other events. 39 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 40 cancel-in-progress: true 41 37 42 jobs: 38 43 # Runs PHP coding standards checks. … … 49 54 # - Runs PHPCS on the full codebase with warnings suppressed. 50 55 # - Runs PHPCS on the `tests` directory without warnings suppressed. 51 # - todo: Configure Slack notifications for failing scans.52 56 phpcs: 53 57 name: PHP coding standards … … 57 61 steps: 58 62 - name: Checkout repository 59 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.463 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 60 64 61 65 - name: Set up PHP 62 uses: shivammathur/setup-php@ afefcaf556d98dc7896cca380e181decb609ca44 # v2.10.066 uses: shivammathur/setup-php@3eda58347216592f618bb1dff277810b6698e4ca # v2.19.1 63 67 with: 64 68 php-version: '7.2' … … 72 76 73 77 - name: Install Composer dependencies 74 uses: ramsey/composer-install@ 92a7904348d4ad30236f3611e33b7f0c6f9edd70 # v1.1.078 uses: ramsey/composer-install@f680dac46551dffb2234a240d65ae806c2999dd6 # v2.1.0 75 79 with: 76 80 composer-options: "--no-progress --no-ansi --no-interaction" … … 91 95 # Performs the following steps: 92 96 # - Checks out the repository. 93 # - Logs debug information about the runner container. 94 # - Installs NodeJS 14. 95 # - Sets up caching for NPM. 97 # - Logs debug information about the GitHub Action runner. 98 # - Installs NodeJS. 96 99 # - Logs updated debug information. 97 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.100 # _ Installs NPM dependencies. 98 101 # - Run the WordPress JSHint checks. 99 # - todo: Configure Slack notifications for failing tests.100 102 jshint: 101 103 name: JavaScript coding standards 102 104 runs-on: ubuntu-latest 105 timeout-minutes: 20 103 106 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 104 107 env: … … 107 110 steps: 108 111 - name: Checkout repository 109 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4112 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 110 113 111 114 - name: Log debug information … … 117 120 118 121 - name: Install NodeJS 119 uses: actions/setup-node@ 46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5122 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 120 123 with: 121 node-version: 14 122 123 - name: Cache NodeJS modules 124 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 125 env: 126 cache-name: cache-node-modules 127 with: 128 # npm cache files are stored in `~/.npm` on Linux/macOS 129 path: ~/.npm 130 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 124 node-version-file: '.nvmrc' 125 cache: npm 131 126 132 127 - name: Log debug information … … 140 135 - name: Run JSHint 141 136 run: npm run grunt jshint 137 138 slack-notifications: 139 name: Slack Notifications 140 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 141 needs: [ phpcs, jshint ] 142 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 143 with: 144 calling_status: ${{ needs.phpcs.result == 'success' && needs.jshint.result == 'success' && 'success' || ( needs.phpcs.result == 'cancelled' || needs.jshint.result == 'cancelled' ) && 'cancelled' || 'failure' }} 145 secrets: 146 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} 147 SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }} 148 SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }} 149 SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }} -
branches/5.1/.github/workflows/javascript-tests.yml
r50622 r53604 5 5 push: 6 6 branches: 7 - master8 7 - trunk 9 8 - '3.[89]' … … 14 13 pull_request: 15 14 branches: 16 - master17 15 - trunk 18 16 - '3.[89]' … … 33 31 workflow_dispatch: 34 32 33 # Cancels all previous workflow runs for pull requests that have not completed. 34 concurrency: 35 # The concurrency group contains the workflow name and the branch name for pull requests 36 # or the commit hash for any other events. 37 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 38 cancel-in-progress: true 39 35 40 jobs: 36 41 # Runs the QUnit tests for WordPress. 37 42 # 38 43 # Performs the following steps: 39 # - Cancels all previous workflow runs for pull requests that have not completed.40 44 # - Checks out the repository. 41 # - Logs debug information about the runner container. 42 # - Installs NodeJS 14. 43 # - Sets up caching for NPM. 45 # - Logs debug information about the GitHub Action runner. 46 # - Installs NodeJS. 44 47 # - Logs updated debug information. 45 # _ Installs NPM dependencies using install-changed to hash the `package.json` file.48 # _ Installs NPM dependencies. 46 49 # - Run the WordPress QUnit tests. 47 # - todo: Configure Slack notifications for failing tests.48 50 test-js: 49 51 name: QUnit Tests 50 52 runs-on: ubuntu-latest 53 timeout-minutes: 20 51 54 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 52 55 53 56 steps: 54 - name: Cancel previous runs of this workflow (pull requests only)55 if: ${{ github.event_name == 'pull_request' }}56 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.057 58 57 - name: Checkout repository 59 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.458 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 60 59 61 60 - name: Log debug information … … 67 66 68 67 - name: Install NodeJS 69 uses: actions/setup-node@ 46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.568 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 70 69 with: 71 node-version: 14 72 73 - name: Cache NodeJS modules 74 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 75 env: 76 cache-name: cache-node-modules 77 with: 78 # npm cache files are stored in `~/.npm` on Linux/macOS 79 path: ~/.npm 80 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 70 node-version-file: '.nvmrc' 71 cache: npm 81 72 82 73 - name: Log debug information … … 90 81 - name: Run QUnit tests 91 82 run: npm run grunt qunit:compiled 83 84 slack-notifications: 85 name: Slack Notifications 86 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 87 needs: [ test-js ] 88 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 89 with: 90 calling_status: ${{ needs.test-js.result == 'success' && 'success' || needs.test-js.result == 'cancelled' && 'cancelled' || 'failure' }} 91 secrets: 92 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} 93 SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }} 94 SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }} 95 SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }} -
branches/5.1/.github/workflows/phpunit-tests.yml
r50622 r53604 4 4 push: 5 5 branches: 6 - master7 6 - trunk 8 7 - '3.[7-9]' … … 13 12 pull_request: 14 13 branches: 15 - master16 14 - trunk 17 15 - '3.[7-9]' … … 21 19 schedule: 22 20 - cron: '0 0 * * 0' 21 22 # Cancels all previous workflow runs for pull requests that have not completed. 23 concurrency: 24 # The concurrency group contains the workflow name and the branch name for pull requests 25 # or the commit hash for any other events. 26 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 27 cancel-in-progress: true 23 28 24 29 env: … … 37 42 # - Cancels all previous workflow runs for pull requests that have not completed. 38 43 # - Checks out the repository. 39 # - Logs debug information about the runner container. 40 # - Installs NodeJS 14. 41 # - Sets up caching for NPM. 42 # _ Installs NPM dependencies using install-changed to hash the `package.json` file. 44 # - Logs debug information about the GitHub Action runner. 45 # - Installs NodeJS. 46 # _ Installs NPM dependencies. 43 47 # - Builds WordPress to run from the `build` directory. 44 48 # - Creates a ZIP file of compiled WordPress. … … 50 54 51 55 steps: 52 - name: Cancel previous runs of this workflow (pull requests only)53 if: ${{ github.event_name == 'pull_request' }}54 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.055 56 56 - name: Checkout repository 57 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.457 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 58 58 59 59 - name: Log debug information … … 71 71 72 72 - name: Install NodeJS 73 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 74 with: 75 node-version: 14 76 77 - name: Cache NodeJS modules 78 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 79 env: 80 cache-name: cache-node-modules 81 with: 82 # npm cache files are stored in `~/.npm` on Linux/macOS 83 path: ~/.npm 84 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 73 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 74 with: 75 node-version-file: '.nvmrc' 76 cache: npm 85 77 86 78 - name: Install Dependencies … … 91 83 92 84 - name: Create ZIP artifact 93 uses: thedoctor0/zip-release@ a1afcab9c664c9976ac398fa831eac67bed1eb0e # v0.4.185 uses: thedoctor0/zip-release@09336613be18a8208dfa66bd57efafd9e2685657 # v0.6.2 94 86 with: 95 87 filename: built-wp-${{ github.sha }}.zip … … 97 89 98 90 - name: Upload build artifact 99 uses: actions/upload-artifact@ e448a9b857ee2131e752b06002bf0e093c65e571 # v2.2.291 uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0 100 92 with: 101 93 name: built-wp-${{ github.sha }} … … 106 98 # 107 99 # Performs the following steps: 108 # - Set environment variables.100 # - Sets environment variables. 109 101 # - Sets up the environment variables needed for testing with memcached (if desired). 110 102 # - Downloads the built WordPress artifact from the previous job. 111 103 # - Unzips the artifact. 112 # - Installs NodeJS 14. 113 # - Sets up caching for NPM. 114 # _ Installs NPM dependencies using install-changed to hash the `package.json` file. 104 # - Installs NodeJS. 105 # _ Installs NPM dependencies. 115 106 # - Configures caching for Composer. 116 107 # _ Installs Composer dependencies (if desired). 117 # - Logs Docker debug information (about boththe Docker installation within the runner).108 # - Logs Docker debug information (about the Docker installation within the runner). 118 109 # - Starts the WordPress Docker container. 119 # - Starts the memcached server after the Docker network has been created (if desired). 120 # - Logs WordPress Docker container debug information. 121 # - Logs debug general information. 110 # - Starts the Memcached server after the Docker network has been created (if desired). 111 # - Logs general debug information about the runner. 122 112 # - Logs the running Docker containers. 113 # - Logs debug information from inside the WordPress Docker container. 123 114 # - Logs debug information about what's installed within the WordPress Docker containers. 124 115 # - Install WordPress within the Docker container. … … 127 118 # - Reconnect the directory to the Git repository. 128 119 # - Submit the test results to the WordPress.org host test results. 129 # - todo: Configure Slack notifications for failing tests.130 120 test-php: 131 name: ${{ matrix.php }}${{ matrix.multisite && ' multisite' || '' }}${{ matrix.split_slow && ' slow tests' || '' }} 121 name: ${{ matrix.php }}${{ matrix.multisite && ' multisite' || '' }}${{ matrix.split_slow && ' slow tests' || '' }}${{ matrix.memcached && ' with memcached' || '' }} on ${{ matrix.os }} 132 122 needs: setup-wordpress 133 123 runs-on: ${{ matrix.os }} 124 timeout-minutes: 20 134 125 strategy: 135 126 fail-fast: false … … 230 221 231 222 - name: Download the built WordPress artifact 232 uses: actions/download-artifact@ 4a7a711286f30c025902c28b541c10e147a9b843 # v2.0.8223 uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # v3.0.0 233 224 with: 234 225 name: built-wp-${{ github.sha }} … … 238 229 239 230 - name: Install NodeJS 240 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 241 with: 242 node-version: 14 243 244 - name: Use cached Node modules 245 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 246 env: 247 cache-name: cache-node-modules 248 with: 249 # npm cache files are stored in `~/.npm` on Linux/macOS 250 path: ~/.npm 251 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 231 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 232 with: 233 node-version-file: '.nvmrc' 234 cache: npm 252 235 253 236 - name: Install Dependencies … … 256 239 - name: Cache Composer dependencies 257 240 if: ${{ env.COMPOSER_INSTALL == true }} 258 uses: actions/cache@ 26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4241 uses: actions/cache@c3f1317a9e7b1ef106c153ac8c0f00fed3ddbc0d # v3.0.4 259 242 env: 260 243 cache-name: cache-composer-dependencies … … 336 319 337 320 - name: Checkout the WordPress Test Reporter 338 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/ master' && matrix.report }}339 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4321 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }} 322 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 340 323 with: 341 324 repository: 'WordPress/phpunit-test-runner' … … 343 326 344 327 - name: Set up the Git repository 345 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/ master' && matrix.report }}328 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }} 346 329 run: | 347 330 git init 348 331 git remote add origin https://github.com/WordPress/wordpress-develop.git 349 332 git fetch 350 git reset origin/ master333 git reset origin/trunk 351 334 352 335 - name: Submit test results to the WordPress.org host test results 353 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/ master' && matrix.report }}336 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/trunk' && matrix.report }} 354 337 env: 355 338 WPT_REPORT_API_KEY: "${{ secrets.WPT_REPORT_API_KEY }}" 356 339 run: docker-compose run --rm -e WPT_REPORT_API_KEY -e WPT_PREPARE_DIR=/var/www -e WPT_TEST_DIR=/var/www php php test-runner/report.php 340 341 slack-notifications: 342 name: Slack Notifications 343 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 344 needs: [ setup-wordpress, test-php ] 345 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 346 with: 347 calling_status: ${{ needs.test-php.result == 'success' && 'success' || needs.test-php.result == 'cancelled' && 'cancelled' || 'failure' }} 348 secrets: 349 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} 350 SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }} 351 SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }} 352 SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }} -
branches/5.1/.github/workflows/test-npm.yml
r50622 r53604 4 4 push: 5 5 branches: 6 - master7 6 - trunk 8 7 - '3.[7-9]' … … 10 9 pull_request: 11 10 branches: 12 - master13 11 - trunk 14 12 - '3.[7-9]' … … 26 24 workflow_dispatch: 27 25 26 # Cancels all previous workflow runs for pull requests that have not completed. 27 concurrency: 28 # The concurrency group contains the workflow name and the branch name for pull requests 29 # or the commit hash for any other events. 30 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 31 cancel-in-progress: true 32 28 33 env: 29 34 PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ true }} 30 35 31 36 jobs: 32 # Prepares the workflow.33 #34 # Performs the following steps:35 # - Cancels all previous workflow runs for pull requests that have not completed.36 prepare-workflow:37 name: Prepare the workflow38 runs-on: ubuntu-latest39 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}40 41 steps:42 - name: Cancel previous runs of this workflow (pull requests only)43 if: ${{ github.event_name == 'pull_request' }}44 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.045 46 37 # Verifies that installing NPM dependencies and building WordPress works as expected. 47 38 # 48 39 # Performs the following steps: 49 40 # - Checks out the repository. 50 # - Logs debug information about the runner container. 51 # - Installs NodeJS 14. 52 # - Sets up caching for NPM. 53 # _ Installs NPM dependencies using install-changed to hash the `package.json` file. 41 # - Logs debug information about the GitHub Action runner. 42 # - Installs NodeJS. 43 # _ Installs NPM dependencies. 54 44 # - Builds WordPress to run from the `build` directory. 55 45 # - Cleans up after building WordPress to the `build` directory. … … 59 49 name: Test NPM on ${{ matrix.os }} 60 50 runs-on: ${{ matrix.os }} 51 timeout-minutes: 20 61 52 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} 62 needs: prepare-workflow63 53 strategy: 64 54 fail-fast: false … … 68 58 steps: 69 59 - name: Checkout repository 70 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.460 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 71 61 72 62 - name: Log debug information … … 79 69 80 70 - name: Install NodeJS 81 uses: actions/setup-node@ 46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.571 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 82 72 with: 83 node-version: 14 84 85 - name: Cache NodeJS modules (Ubuntu & MacOS) 86 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 87 if: ${{ matrix.os != 'windows-latest' }} 88 with: 89 path: ~/.npm 90 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 91 92 - name: Get NPM cache directory (Windows only) 93 if: ${{ matrix.os == 'windows-latest' }} 94 id: npm-cache 95 run: echo "::set-output name=dir::$(npm config get cache)" 96 97 - name: Cache NodeJS modules (Windows only) 98 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 99 if: ${{ matrix.os == 'windows-latest' }} 100 with: 101 path: ${{ steps.npm-cache.outputs.dir }} 102 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 73 node-version-file: '.nvmrc' 74 cache: npm 103 75 104 76 - name: Install Dependencies … … 115 87 116 88 - name: Clean after building in /src 117 run: npm run grunt clean -- dev89 run: npm run grunt clean -- --dev 118 90 119 91 # Verifies that installing NPM dependencies and building WordPress works as expected on MacOS. 120 92 # 121 # This is a separate job in order to that more strict conditions can be used. 93 # This is separate from the job above in order to use stricter conditions about when to run. 94 # This avoids unintentionally consuming excessive minutes, as MacOS jobs consume minutes at a 10x rate. 122 95 # 123 96 # Performs the following steps: 124 97 # - Checks out the repository. 125 # - Logs debug information about the runner container. 126 # - Installs NodeJS 14. 127 # - Sets up caching for NPM. 128 # _ Installs NPM dependencies using install-changed to hash the `package.json` file. 98 # - Logs debug information about the GitHub Action runner. 99 # - Installs NodeJS. 100 # _ Installs NPM dependencies. 129 101 # - Builds WordPress to run from the `build` directory. 130 102 # - Cleans up after building WordPress to the `build` directory. … … 134 106 name: Test NPM on MacOS 135 107 runs-on: macos-latest 108 timeout-minutes: 20 136 109 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 137 needs: prepare-workflow138 110 steps: 139 111 - name: Checkout repository 140 uses: actions/checkout@ 5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4112 uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 141 113 142 114 - name: Log debug information … … 149 121 150 122 - name: Install NodeJS 151 uses: actions/setup-node@ 46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5123 uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3.3.0 152 124 with: 153 node-version: 14 154 155 - name: Cache NodeJS modules 156 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 157 if: ${{ matrix.os != 'windows-latest' }} 158 with: 159 path: ~/.npm 160 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 125 node-version-file: '.nvmrc' 126 cache: npm 161 127 162 128 - name: Install Dependencies … … 173 139 174 140 - name: Clean after building in /src 175 run: npm run grunt clean --dev 141 run: npm run grunt clean -- --dev 142 143 slack-notifications: 144 name: Slack Notifications 145 uses: WordPress/wordpress-develop/.github/workflows/slack-notifications.yml@trunk 146 needs: [ test-npm, test-npm-macos ] 147 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.event_name != 'pull_request' && always() }} 148 with: 149 calling_status: ${{ needs.test-npm.result == 'success' && needs.test-npm-macos.result == 'success' && 'success' || ( needs.test-npm.result == 'cancelled' || needs.test-npm-macos.result == 'cancelled' ) && 'cancelled' || 'failure' }} 150 secrets: 151 SLACK_GHA_SUCCESS_WEBHOOK: ${{ secrets.SLACK_GHA_SUCCESS_WEBHOOK }} 152 SLACK_GHA_CANCELLED_WEBHOOK: ${{ secrets.SLACK_GHA_CANCELLED_WEBHOOK }} 153 SLACK_GHA_FIXED_WEBHOOK: ${{ secrets.SLACK_GHA_FIXED_WEBHOOK }} 154 SLACK_GHA_FAILURE_WEBHOOK: ${{ secrets.SLACK_GHA_FAILURE_WEBHOOK }} -
branches/5.1/.github/workflows/welcome-new-contributors.yml
r50622 r53604 9 9 post-welcome-message: 10 10 runs-on: ubuntu-latest 11 timeout-minutes: 5 11 12 if: ${{ github.repository == 'WordPress/wordpress-develop' }} 12 13
Note: See TracChangeset
for help on using the changeset viewer.