diff --git a/.github/workflows/reusable-coding-standards-php.yml b/.github/workflows/reusable-coding-standards-php.yml index 709c598872b23..fab8bffb31e11 100644 --- a/.github/workflows/reusable-coding-standards-php.yml +++ b/.github/workflows/reusable-coding-standards-php.yml @@ -29,6 +29,7 @@ jobs: # Performs the following steps: # - Checks out the repository. # - Sets up PHP. + # - Gets last Monday's date for use in cache keys. # - Configures caching for PHPCS scans. # - Installs Composer dependencies. # - Make Composer packages available globally. diff --git a/.github/workflows/reusable-phpstan-static-analysis-v1.yml b/.github/workflows/reusable-phpstan-static-analysis-v1.yml index 745e789580d8f..6fc73153ccabb 100644 --- a/.github/workflows/reusable-phpstan-static-analysis-v1.yml +++ b/.github/workflows/reusable-phpstan-static-analysis-v1.yml @@ -23,11 +23,14 @@ jobs: # # Performs the following steps: # - Checks out the repository. + # - Sets up Node.js. # - Sets up PHP. - # - Installs Composer dependencies. # - Logs debug information. - # - Configures caching for PHP static analysis scans. + # - Installs Composer dependencies. # - Make Composer packages available globally. + # - Installs npm dependencies. + # - Builds WordPress. + # - Configures caching for PHP static analysis scans. # - Runs PHPStan static analysis (with Pull Request annotations). # - Saves the PHPStan result cache. # - Ensures version-controlled files are not modified or deleted.