-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0478076
commit fcde1e4
Showing
9 changed files
with
137 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
github: yireo | ||
custom: ["https://www.paypal.me/yireo"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
bin/magento setup:config:set --cache-backend=redis --cache-backend-redis-server=redis --cache-backend-redis-db=0 -n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
composer config minimum-stability dev | ||
composer config prefer-stable false | ||
|
||
composer require yireo/magento2-integration-test-helper --no-update | ||
|
||
composer require yireo/magento2-replace-bundled:^4.0 --no-update | ||
composer require yireo/magento2-replace-inventory:^4.0 --no-update | ||
composer require yireo/magento2-replace-pagebuilder:^4.0 --no-update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: ExtDN Integration Tests | ||
on: [push] | ||
|
||
jobs: | ||
integration-tests: | ||
name: Magento 2 Integration Tests | ||
runs-on: ubuntu-latest | ||
services: | ||
mysql: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_ROOT_PASSWORD: root | ||
ports: | ||
- 3306:3306 | ||
options: --tmpfs /tmp:rw --tmpfs /var/lib/mysql:rw --health-cmd="mysqladmin ping" | ||
es: | ||
image: docker.io/wardenenv/elasticsearch:7.8 | ||
ports: | ||
- 9200:9200 | ||
env: | ||
'discovery.type': single-node | ||
'xpack.security.enabled': false | ||
ES_JAVA_OPTS: "-Xms64m -Xmx512m" | ||
options: --health-cmd="curl localhost:9200/_cluster/health?wait_for_status=yellow&timeout=60s" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
redis: | ||
image: redis | ||
ports: | ||
- 6379:6379 | ||
options: --health-cmd "redis-cli ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
env: | ||
MAGENTO_MARKETPLACE_USERNAME: ${{ secrets.MAGENTO_MARKETPLACE_USERNAME }} | ||
MAGENTO_MARKETPLACE_PASSWORD: ${{ secrets.MAGENTO_MARKETPLACE_PASSWORD }} | ||
MODULE_NAME: ${{ secrets.MODULE_NAME }} | ||
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache Composer dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/composer-cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | ||
|
||
- uses: extdn/github-actions-m2/magento-integration-tests/8.1@master | ||
env: | ||
MAGENTO_VERSION: '2.4.5-p1' | ||
COMPOSER_VERSION: 2 | ||
with: | ||
magento_pre_install_script: .github/workflows/extdn-integration-tests-pre-install.sh | ||
magento_post_install_script: .github/workflows/extdn-integration-tests-post-install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
composer config minimum-stability dev | ||
composer config prefer-stable false | ||
composer config --no-plugins allow-plugins true | ||
|
||
composer require yireo/magento2-integration-test-helper --no-update | ||
|
||
composer require yireo/magento2-integration-test-helper --no-update | ||
composer require yireo/magento2-replace-bundled:^4.0 --no-update | ||
composer require yireo/magento2-replace-inventory:^4.0 --no-update | ||
composer require yireo/magento2-replace-pagebuilder:^4.0 --no-update | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: ExtDN PHPStan | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
phpstan: | ||
name: PHPStan | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache Composer dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/composer-cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | ||
|
||
- uses: docker://extdn/magento-phpstan-action:7.4-latest | ||
with: | ||
composer_name: ${{ secrets.COMPOSER_NAME }} | ||
composer_version: 2 | ||
phpstan_level: 2 | ||
magento_pre_install_script: .github/workflows/extdn-phpstan-tests-pre-install.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: ExtDN Unit Tests | ||
on: [push] | ||
|
||
jobs: | ||
unit-tests: | ||
name: Magento 2 Unit Tests | ||
runs-on: ubuntu-latest | ||
env: | ||
MAGENTO_MARKETPLACE_USERNAME: ${{ secrets.MAGENTO_MARKETPLACE_USERNAME }} | ||
MAGENTO_MARKETPLACE_PASSWORD: ${{ secrets.MAGENTO_MARKETPLACE_PASSWORD }} | ||
MODULE_NAME: ${{ secrets.MODULE_NAME }} | ||
COMPOSER_NAME: ${{ secrets.COMPOSER_NAME }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache Composer dependencies | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/composer-cache | ||
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | ||
|
||
- uses: extdn/github-actions-m2/magento-unit-tests/7.3@master | ||
env: | ||
MAGENTO_VERSION: '2.3.7-p3' | ||
COMPOSER_VERSION: 1 | ||
|
||
- uses: extdn/github-actions-m2/magento-unit-tests/8.1@master | ||
env: | ||
MAGENTO_VERSION: '2.4.5-p1' | ||
COMPOSER_VERSION: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters