Damien Retzinger
01e4ccbc54
feat(semver-compare): add new Github action ( #146 )
...
This adds a new Github Action that semantically compares two versions, like 2.1.1 and 2.3.0 giving information about whether or the version is "higher" or "lower" than another version. The action exposes an output called `result` which will match the return type of the PHP [version_compare](https://www.php.net/manual/en/function.version-compare.php ) function.
Currently, this action compares `version` against `compare_against` and returns:
- `-1` - if `version` is lower than `compare_against`
- `0` - if `version` is equal to `compare_against`
- `1` - if `version` is greater than `compare_against`
Co-authored-by: Vitaliy Golomoziy <vitaliy.golomoziy@gmail.com >
2023-09-21 08:35:57 -04:00
Damien Retzinger
bc840e1372
feat(get-composer-version): create new action ( #145 )
...
This creates a new A Github Action that determines the currently installed version of Composer.
Co-authored-by: Vitaliy Golomoziy <vitaliy.golomoziy@gmail.com >
2023-09-21 08:15:24 -04:00
Vinai Kopp
f8835e5c0a
chore: comment mysql 5.7 install script source ( #70 )
2023-08-15 17:20:38 -04:00
Vinai Kopp
b82ff0d536
chore: disable mysqldump column-statistics for 2.3.7-* builds ( #69 )
2023-06-24 23:34:07 +02:00
Vinai Kopp
2726817e55
chore: save test sandbox as an artifact to help debug failures ( #68 )
2023-06-24 19:11:31 +02:00
Damien Retzinger
85d11af76e
fix: make es8 run correctly in integration tests ( #66 )
2023-06-22 06:58:49 +02:00
Vinai Kopp
1dc33c08a1
chore: switch all references of graycore/github-actions-magento2 to mage-os/github-actions
2023-06-17 09:49:31 +02:00
Damien Retzinger
320fc062aa
chore: fixup release please token to MageOS Token ( #25 )
2023-04-25 11:19:34 -04:00
Damien Retzinger
0b005d1d95
chore: add support for release-please ( #165 )
2023-03-15 09:59:03 -04:00
Georgiy Slobodenyuk
805b23b1fa
docs(integration): fix auth instructions link ( #116 )
2023-01-09 09:18:59 -05:00
Damien Retzinger
7b74ff7386
feat(setup-magento): add a new action to setup Magento ( #76 )
...
Adds a unified setup action for stores and extensions, making the CI
environment more consistent.
2022-10-31 08:51:28 -04:00
Gowri
d8936216c0
refactor: fix ::set-output deprecations ( #79 )
2022-10-20 15:58:22 -04:00
Damien Retzinger
84c16c2ad9
chore(deps): use get-magento-verison ( #74 )
2022-10-14 13:15:26 -04:00
Damien Retzinger
fd858c3063
feat(get-magento-version): add get-magento-version action ( #72 )
2022-10-14 11:07:30 -04:00
Damien Retzinger
7431dcb7af
feat: allow using "next" version on supported version ( #58 )
...
This also allows using the action in https://github.com/mage-os/generate-mirror-repo-js where the test module is an external package installed with composer. In this case, no local path repo configuration is needed.
Co-authored-by: Vinai Kopp <Vinai@users.noreply.github.com >
2022-10-11 16:19:49 -04:00
Daniel Sloof
2a102c253d
feat: add coding standard action ( #51 )
2022-09-06 10:36:33 -04:00
Damien Retzinger
b4e7831c93
feat(integration): fix integration tests for v2.4.0 ( #46 )
2022-08-25 14:16:29 -06:00
Damien Retzinger
affb1ce1f9
feat(supported-version): add support for v2.4.5 ( #35 )
2022-08-13 17:22:59 -04:00
Damien Retzinger
cbbba628dd
feat: make cache key consistent (and configurable) ( #38 )
2022-08-13 14:39:00 -04:00
Damien Retzinger
841670a97f
fix(integration): only run monolog fixup on v2.4.4 ( #37 )
2022-08-13 12:38:55 -04:00
Damien Retzinger
26c354d8d4
feat(supported-version): add all kind ( #36 )
2022-08-12 08:40:31 -04:00
dependabot[bot]
09d4f1e097
chore(deps): bump actions/checkout from 2 to 3 ( #31 )
...
Bumps [actions/checkout](https://github.com/actions/checkout ) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-08-08 21:54:57 -04:00
Damien Retzinger
7980955b02
ci: package.json changes trigger tests
2022-08-08 21:49:20 -04:00
Damien Retzinger
664360ede2
feat(supported-version): add user-defined kind ( #28 )
...
`kind` is a new input property for the `supported-version` action which
allows one to define what specific versions of Magento they support.
Currently, `kind` supports `latest`, `currently-supported`, and `custom`. See the
README for `supported-version` if you want more specifics
2022-08-05 17:36:38 -04:00
Ihor Sviziev
97b4223c0c
feat(integration): Install composer plugin for parallel downloads ( #24 )
2022-08-05 11:40:21 -04:00
Damien Retzinger
86686e6a7a
style: lint yaml ( #23 )
...
Co-authored-by: Ihor Sviziev <ihor-sviziev@users.noreply.github.com >
2022-08-05 08:19:38 -04:00
Damien Retzinger
49bbcc89a7
feat: install composer via shivammathur/setup-php github action ( #23 )
...
I also disabled Xdebug because it is not used in integration tests.
Co-authored-by: Ihor Sviziev <ihor-sviziev@users.noreply.github.com >
2022-08-05 08:19:38 -04:00
Damien Retzinger
8a209b982b
feat: update actions/checkout to v3 ( #23 )
...
Co-authored-by: Ihor Sviziev <ihor-sviziev@users.noreply.github.com >
2022-08-05 08:19:37 -04:00
Damien Retzinger
2405cd1db7
feat: allow fail-fast as an input argument ( #25 )
2022-08-05 08:18:25 -04:00
Ihor Sviziev
97c0e17a1e
docs(integration): update repo in integration workflow readme file ( #19 )
2022-07-28 10:11:15 -04:00
Damien Retzinger
e92a242f0a
feat: remove COMPOSER_AUTH requirement ( #18 )
2022-07-27 15:44:49 -04:00
Damien Retzinger
d1cced897a
feat: use Mage-OS by default ( #17 )
2022-07-27 15:36:33 -04:00
Damien Retzinger
e9ea198bbe
fix(integration): force to explicitly older monolog versions ( #12 ) ( #16 )
...
See https://github.com/magento/magento2/issues/35604
Looks like this is a wontfix.
2022-07-24 11:42:46 -04:00
Damien Retzinger
9828e530cf
chore: allow internal installation workflow to be called manually
2022-07-02 13:39:53 -04:00
Damien Retzinger
e3633dc032
chore: allow internal integration workflow to be called manually ( #13 )
2022-07-02 13:38:31 -04:00
Damien Retzinger
d6e6688ead
feat: automatically allow the default Magento composer plugins ( #12 )
2022-07-02 13:31:02 -04:00
Damien Retzinger
edc8daac3a
ci: run self-verification more specifically
2022-06-26 13:48:02 -04:00
Damien Retzinger
b9afc28be0
docs: minor cleanup of language
2022-06-26 13:42:46 -04:00
Damien Retzinger
e7ef17a883
chore: prefix _internal self-verification
2022-06-26 13:38:07 -04:00
Damien Retzinger
e7cf80c743
docs: improve README for workflows and actions
2022-06-26 13:36:47 -04:00
Damien Retzinger
56cff9de0b
fix(supported-version): matrix innaccessible outside of repo ( #8 )
2022-06-26 13:25:38 -04:00
Damien Retzinger
fb1ac5f41a
feat: add matrix to integration-test workflow ( #7 )
2022-06-26 12:57:50 -04:00
Damien Retzinger
6e81ef96c7
feat: add supported version matrix action ( #6 )
2022-06-25 23:55:09 -04:00
Damien Retzinger
984dda3efa
docs: document unit, integration, and installation ( #4 )
2022-06-25 21:36:58 -04:00
Damien Retzinger
d638c02eca
feat: add integration test workflow ( #3 )
2022-06-25 21:15:05 -04:00
Damien Retzinger
72b1f25310
feat: add unit test action ( #2 )
2022-06-25 16:39:58 -04:00
Damien Retzinger
4bc0854cfc
feat: add Installation Test Action ( #1 )
2022-06-25 12:14:49 -04:00