dd8f9686fb
* Rename Google Listings and Ads with Google for WooCommerce * Revert change regarding changelog * Add changelogs * Add changefile(s) from automation for the following project(s): @woocommerce/data, packages/php/remote-specs-validation, woocommerce * Lint * Lint * Lint * Rename Google Listings and Ads with Google for WooCommerce * Lint * Lint * Tweak updated tests * Add changefile(s) from automation for the following project(s): @woocommerce/data, packages/php/remote-specs-validation, woocommerce * Lint * Fix flaky tests --------- Co-authored-by: github-actions <github-actions@github.com> |
||
---|---|---|
.. | ||
src | ||
.eslintignore | ||
.eslintrc.js | ||
README.md | ||
index.ts | ||
jest.config.js | ||
package.json | ||
tsconfig.json |
README.md
Code Analyzer
Description
code-analyzer
is a CLI tool designed to analyze change information about plugins in the WooCommerce monorepo.
Commands
Currently there are 3 commands:
lint
. Analyzer is used as a linter for PRs to check if hook/template/db changes were introduced. It produces output either directly on CI or via setting output variables in GH actions.
Here is an example analyzer
command, run from this directory:
pnpm analyzer lint "release/6.8" "6.8.0" -b release/6.7
In this command we compare the release/6.7
and release/6.8
branches to find differences, and we're looking for changes introduced since 6.8.0
(using the @since
tag).
To find out more about the other arguments to the command you can run pnpm analyzer -- --help
major-minor
. This simple CLI tool gives you the latest.0
major/minor released version of a plugin's mainfile based on Woo release conventions.
Here is an example major-minor
command, run from this directory:
pnpm analyzer major-minor "release/6.8" "plugins/woocommerce/woocommerce.php"
In this command we checkout the branch release/6.8
and check the version of the woocommerce.php mainfile located at the path passed. Note that at the time of
writing the main file in this particular branch reports 6.8.1
so the output of this command is 6.8.0
.
This command is particularly useful combined with the analyzer, allowing you to determine the last major/minor.0 version of a branch or ref before passing that as the
version argument to analyzer
.
scan
. Scan is likelint
but lets you scan for a specific change type. e.g. you can scan just for hook changes if you wish.
Here is an example of the scan
command run to look for hook changes:
pnpm analyzer scan hooks "release/6.8" "release/6.7" --since "6.8.0"
In this command we compare the release/6.7
and release/6.8
branches to find hook changes, and we're looking for changes introduced since 6.8.0
(using the @since
tag).