├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ ├── feature_request.md │ ├── other.md │ └── performance_issue.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── _internal-coding-standard.yaml │ ├── _internal-get-composer-version.yaml │ ├── _internal-get-magento-version.yaml │ ├── _internal-install.yaml │ ├── _internal-integration.yaml │ ├── _internal-semver-compare.yaml │ ├── _internal-setup-magento.yaml │ ├── _internal-unit.yaml │ ├── _internal_test_actions.yaml │ ├── integration-README.md │ ├── integration.yaml │ └── release-please.yml ├── .gitignore ├── .nvmrc ├── .release-please-manifest.json ├── .vscode └── extensions.json ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── README.md ├── _test └── demo-package │ ├── .gitignore │ ├── README.md │ ├── Test │ ├── Integration │ │ └── ItWorksTest.php │ └── Unit │ │ └── ItWorksTest.php │ ├── composer.json │ ├── composer.lock │ ├── etc │ └── module.xml │ ├── phpunit.xml │ └── registration.php ├── cache-magento ├── README.md └── action.yml ├── coding-standard-baseline ├── README.md └── action.yml ├── coding-standard ├── README.md └── action.yml ├── fix-magento-install ├── README.md └── action.yml ├── get-composer-version ├── README.md └── action.yml ├── get-magento-version ├── README.md └── action.yml ├── installation-test ├── README.md └── action.yml ├── package.json ├── release-please-config.json ├── semver-compare ├── README.md └── action.yml ├── setup-di-compile ├── README.md └── action.yml ├── setup-magento ├── README.md └── action.yml ├── supported-version ├── README.md ├── action.yml ├── dist │ └── index.js ├── jest.config.js ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ ├── kind │ │ ├── get-currently-supported.spec.ts │ │ ├── get-currently-supported.ts │ │ ├── kinds.ts │ │ ├── recent.spec.ts │ │ ├── recent.ts │ │ ├── special-versions │ │ │ ├── latest.json │ │ │ └── nightly.json │ │ ├── validate-kinds.spec.ts │ │ ├── validate-kinds.ts │ │ ├── validations │ │ │ ├── custom-versions-validator.ts │ │ │ └── is-known-kind.ts │ │ └── validator.ts │ ├── matrix │ │ ├── get-matrix-for-kind.spec.ts │ │ ├── get-matrix-for-kind.ts │ │ ├── get-matrix-for-versions.ts │ │ └── matrix-type.ts │ ├── nightly │ │ ├── amend-matrix-for-next.spec.ts │ │ ├── amend-matrix-for-next.ts │ │ ├── get-day-before.ts │ │ ├── get-next-version.spec.ts │ │ ├── get-next-version.ts │ │ ├── repository.ts │ │ ├── unify-next-package-name.spec.ts │ │ └── unify-next-package-name.ts │ ├── project │ │ ├── projects.ts │ │ ├── validate-projects.spec.ts │ │ ├── validate-projects.ts │ │ ├── validations │ │ │ ├── is-known-project.spec.ts │ │ │ └── is-known-project.ts │ │ └── validator.ts │ └── versions │ │ ├── get-versions-for-project.spec.ts │ │ ├── get-versions-for-project.ts │ │ ├── mage-os │ │ ├── composite.json │ │ └── individual.json │ │ └── magento-open-source │ │ ├── composite.json │ │ └── individual.json └── tsconfig.json └── unit-test ├── README.md └── action.yml /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/ISSUE_TEMPLATE/performance_issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/_internal-coding-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-coding-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-get-composer-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-get-composer-version.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-get-magento-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-get-magento-version.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-install.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-integration.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-semver-compare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-semver-compare.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-setup-magento.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-setup-magento.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal-unit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal-unit.yaml -------------------------------------------------------------------------------- /.github/workflows/_internal_test_actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/_internal_test_actions.yaml -------------------------------------------------------------------------------- /.github/workflows/integration-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/integration-README.md -------------------------------------------------------------------------------- /.github/workflows/integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/integration.yaml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18.18.0 -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | {".":"3.0.0"} 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @Mage-OS/infrastructure -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/README.md -------------------------------------------------------------------------------- /_test/demo-package/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | .phpunit.result.cache -------------------------------------------------------------------------------- /_test/demo-package/README.md: -------------------------------------------------------------------------------- 1 | # Magento 2 Demo Package 2 | 3 | It does nothing, intentionally... -------------------------------------------------------------------------------- /_test/demo-package/Test/Integration/ItWorksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/Test/Integration/ItWorksTest.php -------------------------------------------------------------------------------- /_test/demo-package/Test/Unit/ItWorksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/Test/Unit/ItWorksTest.php -------------------------------------------------------------------------------- /_test/demo-package/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/composer.json -------------------------------------------------------------------------------- /_test/demo-package/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/composer.lock -------------------------------------------------------------------------------- /_test/demo-package/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/etc/module.xml -------------------------------------------------------------------------------- /_test/demo-package/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/phpunit.xml -------------------------------------------------------------------------------- /_test/demo-package/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/_test/demo-package/registration.php -------------------------------------------------------------------------------- /cache-magento/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/cache-magento/README.md -------------------------------------------------------------------------------- /cache-magento/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/cache-magento/action.yml -------------------------------------------------------------------------------- /coding-standard-baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/coding-standard-baseline/README.md -------------------------------------------------------------------------------- /coding-standard-baseline/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/coding-standard-baseline/action.yml -------------------------------------------------------------------------------- /coding-standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/coding-standard/README.md -------------------------------------------------------------------------------- /coding-standard/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/coding-standard/action.yml -------------------------------------------------------------------------------- /fix-magento-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/fix-magento-install/README.md -------------------------------------------------------------------------------- /fix-magento-install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/fix-magento-install/action.yml -------------------------------------------------------------------------------- /get-composer-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/get-composer-version/README.md -------------------------------------------------------------------------------- /get-composer-version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/get-composer-version/action.yml -------------------------------------------------------------------------------- /get-magento-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/get-magento-version/README.md -------------------------------------------------------------------------------- /get-magento-version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/get-magento-version/action.yml -------------------------------------------------------------------------------- /installation-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/installation-test/README.md -------------------------------------------------------------------------------- /installation-test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/installation-test/action.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/release-please-config.json -------------------------------------------------------------------------------- /semver-compare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/semver-compare/README.md -------------------------------------------------------------------------------- /semver-compare/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/semver-compare/action.yml -------------------------------------------------------------------------------- /setup-di-compile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/setup-di-compile/README.md -------------------------------------------------------------------------------- /setup-di-compile/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/setup-di-compile/action.yml -------------------------------------------------------------------------------- /setup-magento/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/setup-magento/README.md -------------------------------------------------------------------------------- /setup-magento/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/setup-magento/action.yml -------------------------------------------------------------------------------- /supported-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/README.md -------------------------------------------------------------------------------- /supported-version/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/action.yml -------------------------------------------------------------------------------- /supported-version/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/dist/index.js -------------------------------------------------------------------------------- /supported-version/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/jest.config.js -------------------------------------------------------------------------------- /supported-version/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/package-lock.json -------------------------------------------------------------------------------- /supported-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/package.json -------------------------------------------------------------------------------- /supported-version/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/index.ts -------------------------------------------------------------------------------- /supported-version/src/kind/get-currently-supported.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/get-currently-supported.spec.ts -------------------------------------------------------------------------------- /supported-version/src/kind/get-currently-supported.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/get-currently-supported.ts -------------------------------------------------------------------------------- /supported-version/src/kind/kinds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/kinds.ts -------------------------------------------------------------------------------- /supported-version/src/kind/recent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/recent.spec.ts -------------------------------------------------------------------------------- /supported-version/src/kind/recent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/recent.ts -------------------------------------------------------------------------------- /supported-version/src/kind/special-versions/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/special-versions/latest.json -------------------------------------------------------------------------------- /supported-version/src/kind/special-versions/nightly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/special-versions/nightly.json -------------------------------------------------------------------------------- /supported-version/src/kind/validate-kinds.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/validate-kinds.spec.ts -------------------------------------------------------------------------------- /supported-version/src/kind/validate-kinds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/validate-kinds.ts -------------------------------------------------------------------------------- /supported-version/src/kind/validations/custom-versions-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/validations/custom-versions-validator.ts -------------------------------------------------------------------------------- /supported-version/src/kind/validations/is-known-kind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/validations/is-known-kind.ts -------------------------------------------------------------------------------- /supported-version/src/kind/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/kind/validator.ts -------------------------------------------------------------------------------- /supported-version/src/matrix/get-matrix-for-kind.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/matrix/get-matrix-for-kind.spec.ts -------------------------------------------------------------------------------- /supported-version/src/matrix/get-matrix-for-kind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/matrix/get-matrix-for-kind.ts -------------------------------------------------------------------------------- /supported-version/src/matrix/get-matrix-for-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/matrix/get-matrix-for-versions.ts -------------------------------------------------------------------------------- /supported-version/src/matrix/matrix-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/matrix/matrix-type.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/amend-matrix-for-next.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/amend-matrix-for-next.spec.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/amend-matrix-for-next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/amend-matrix-for-next.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/get-day-before.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/get-day-before.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/get-next-version.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/get-next-version.spec.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/get-next-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/get-next-version.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/repository.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/unify-next-package-name.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/unify-next-package-name.spec.ts -------------------------------------------------------------------------------- /supported-version/src/nightly/unify-next-package-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/nightly/unify-next-package-name.ts -------------------------------------------------------------------------------- /supported-version/src/project/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/project/projects.ts -------------------------------------------------------------------------------- /supported-version/src/project/validate-projects.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/project/validate-projects.spec.ts -------------------------------------------------------------------------------- /supported-version/src/project/validate-projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/project/validate-projects.ts -------------------------------------------------------------------------------- /supported-version/src/project/validations/is-known-project.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/project/validations/is-known-project.spec.ts -------------------------------------------------------------------------------- /supported-version/src/project/validations/is-known-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/project/validations/is-known-project.ts -------------------------------------------------------------------------------- /supported-version/src/project/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/project/validator.ts -------------------------------------------------------------------------------- /supported-version/src/versions/get-versions-for-project.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/versions/get-versions-for-project.spec.ts -------------------------------------------------------------------------------- /supported-version/src/versions/get-versions-for-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/versions/get-versions-for-project.ts -------------------------------------------------------------------------------- /supported-version/src/versions/mage-os/composite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/versions/mage-os/composite.json -------------------------------------------------------------------------------- /supported-version/src/versions/mage-os/individual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/versions/mage-os/individual.json -------------------------------------------------------------------------------- /supported-version/src/versions/magento-open-source/composite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/versions/magento-open-source/composite.json -------------------------------------------------------------------------------- /supported-version/src/versions/magento-open-source/individual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/src/versions/magento-open-source/individual.json -------------------------------------------------------------------------------- /supported-version/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/supported-version/tsconfig.json -------------------------------------------------------------------------------- /unit-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/unit-test/README.md -------------------------------------------------------------------------------- /unit-test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/graycoreio/github-actions-magento2/HEAD/unit-test/action.yml --------------------------------------------------------------------------------