├── .gitattributes ├── .github ├── dependabot.yml ├── release.yml └── workflows │ ├── auto-merge.yml │ └── test.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── action.yml ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── eslint.config.mjs ├── package.json ├── src └── main.ts ├── tests └── fixtures │ ├── hello-dolly-copy │ └── hello.php │ └── plugin-with-dependencies │ └── plugin-with-dependencies.php └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/**/* 2 | node_modules 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/src/main.ts -------------------------------------------------------------------------------- /tests/fixtures/hello-dolly-copy/hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/tests/fixtures/hello-dolly-copy/hello.php -------------------------------------------------------------------------------- /tests/fixtures/plugin-with-dependencies/plugin-with-dependencies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/tests/fixtures/plugin-with-dependencies/plugin-with-dependencies.php -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WordPress/plugin-check-action/HEAD/tsconfig.json --------------------------------------------------------------------------------