Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/phpunit-tests-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ jobs:
docker-compose run --rm php php -m
docker-compose run --rm php php -i
docker-compose run --rm php locale -a
node ./tools/local-env/scripts/docker.js run php ./vendor/bin/phpunit --version

- name: Install WordPress
run: npm run env:install
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: ./.github/workflows/phpunit-tests-run.yml
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: ./.github/workflows/phpunit-tests-run.yml
permissions:
contents: read
secrets: inherit
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