Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Editor: Initial WordPress package updates for 6.5 #5922

Closed
wants to merge 12 commits into from
2 changes: 1 addition & 1 deletion .github/workflows/phpunit-tests-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
phpunit-tests:
name: PHP ${{ inputs.php }} / ${{ 'mariadb' == inputs.db-type && 'MariaDB' || 'MySQL' }} ${{ inputs.db-version }}${{ inputs.multisite && ' multisite' || '' }}${{ inputs.memcached && ' with memcached' || '' }}${{ inputs.report && ' (test reporting enabled)' || '' }}
runs-on: ${{ inputs.os }}
timeout-minutes: 20
timeout-minutes: 60

steps:
- name: Configure environment variables
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/phpunit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
#
test-with-mysql:
name: PHP ${{ matrix.php }}
uses: WordPress/wordpress-develop/.github/workflows/phpunit-tests-run.yml@trunk
uses: youknowriad/wordpress-develop/.github/workflows/phpunit-tests-run.yml@update/packages-65
youknowriad marked this conversation as resolved.
Show resolved Hide resolved
permissions:
contents: read
secrets: inherit
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
#
test-with-mariadb:
name: PHP ${{ matrix.php }}
uses: WordPress/wordpress-develop/.github/workflows/phpunit-tests-run.yml@trunk
uses: youknowriad/wordpress-develop/.github/workflows/phpunit-tests-run.yml@update/packages-65
permissions:
contents: read
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-old-branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
actions: write
timeout-minutes: 20
timeout-minutes: 60
youknowriad marked this conversation as resolved.
Show resolved Hide resolved
if: ${{ github.repository == 'WordPress/wordpress-develop' }}
strategy:
fail-fast: false
Expand Down
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -1566,7 +1566,9 @@ module.exports = function(grunt) {
*/
grunt.registerTask( 'verify:source-maps', function() {
const ignoredFiles = [
'build/wp-includes/js/dist/components.js'
'build/wp-includes/js/dist/components.js',
'build/wp-includes/js/dist/block-editor.js',
'build/wp-includes/js/dist/block-editor.min.js'
];
const files = buildFiles.reduce( ( acc, path ) => {
// Skip excluded paths and any path that isn't a file.
Expand Down
Loading
Loading