mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Build/Test Tools: Run automated testing when tags are created.
This expands the list of events that triggers automated testing to include tags. It also refines the matched version ranges for several workflows. See #50401. git-svn-id: https://develop.svn.wordpress.org/trunk@50298 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
e3a98e8f55
commit
14c3fb1d43
8
.github/workflows/coding-standards.yml
vendored
8
.github/workflows/coding-standards.yml
vendored
@ -4,9 +4,13 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
# JSHint was introduced in WordPress 3.8.
|
||||
# PHPCS checking was introduced in WordPress 5.1.
|
||||
- '5.[1-9]'
|
||||
- '[6-9].*'
|
||||
- '3.[89]'
|
||||
- '[4-9].[0-9]'
|
||||
tags:
|
||||
- '3.[89]*'
|
||||
- '[4-9].[0-9]*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
||||
5
.github/workflows/end-to-end-tests.yml
vendored
5
.github/workflows/end-to-end-tests.yml
vendored
@ -6,7 +6,10 @@ on:
|
||||
- master
|
||||
# The end to end test suite was introduced in WordPress 5.3.
|
||||
- '5.[3-9]'
|
||||
- '[6-9].*'
|
||||
- '[6-9].[0-9]'
|
||||
tags:
|
||||
- '5.[3-9]*'
|
||||
- '[6-9].[0-9]*'
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
|
||||
7
.github/workflows/javascript-tests.yml
vendored
7
.github/workflows/javascript-tests.yml
vendored
@ -4,7 +4,12 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '*.*'
|
||||
# JavaScript testing was introduced in WordPress 3.8.
|
||||
- '3.[89]'
|
||||
- '[4-9].[0-9]'
|
||||
tags:
|
||||
- '3.[89]*'
|
||||
- '[4-9].[0-9]*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
||||
5
.github/workflows/php-compatibility.yml
vendored
5
.github/workflows/php-compatibility.yml
vendored
@ -6,7 +6,10 @@ on:
|
||||
- master
|
||||
# The PHP compatibility testing was introduced in WordPress 5.5.
|
||||
- '5.[5-9]'
|
||||
- '[6-9].*'
|
||||
- '[6-9].[0-9]'
|
||||
tags:
|
||||
- '5.[5-9]*'
|
||||
- '[6-9].[0-9]*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
|
||||
6
.github/workflows/phpunit-tests.yml
vendored
6
.github/workflows/phpunit-tests.yml
vendored
@ -4,7 +4,11 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '*.*'
|
||||
- '3.[7-9]'
|
||||
- '[4-9].[0-9]'
|
||||
tags:
|
||||
- '3.[7-9]*'
|
||||
- '[4-9].[0-9]*'
|
||||
pull_request:
|
||||
# Once weekly On Sundays at 00:00 UTC.
|
||||
schedule:
|
||||
|
||||
3
.github/workflows/verify-npm-on-windows.yml
vendored
3
.github/workflows/verify-npm-on-windows.yml
vendored
@ -4,7 +4,8 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- '*.*'
|
||||
- '3.[7-9]'
|
||||
- '[4-9].[0-9]'
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user