Changeset 50930 for trunk/.github/workflows/phpunit-tests.yml
- Timestamp:
- 05/19/2021 05:36:54 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/phpunit-tests.yml
r50704 r50930 22 22 - cron: '0 0 * * 0' 23 23 24 # Cancels all previous workflow runs for pull requests that have not completed. 25 concurrency: 26 # The concurrency group contains the workflow name and the branch name for pull requests 27 # or the commit hash for any other events. 28 group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} 29 cancel-in-progress: true 30 24 31 env: 25 32 PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: ${{ true }} … … 31 38 32 39 jobs: 33 # Sets up the workflow for testing.34 #35 # Performs the following steps:36 # - Cancels all previous workflow runs for pull requests that have not completed.37 setup-workflow:38 name: Setup Workflow39 runs-on: ubuntu-latest40 if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }}41 42 steps:43 - name: Cancel previous runs of this workflow (pull requests only)44 if: ${{ github.event_name == 'pull_request' }}45 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.046 47 40 # Runs the PHPUnit tests for WordPress. 48 41 #
Note: See TracChangeset
for help on using the changeset viewer.