-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit b6a4fec
Showing
138 changed files
with
11,636 additions
and
0 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: tuyennn | ||
ko_fi: thinghost76 | ||
custom: ["https://www.paypal.me/thinghost"] |
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,29 @@ | ||
--- | ||
name: Bug report | ||
about: Technical issue with the Module | ||
|
||
--- | ||
|
||
### Preconditions (*) | ||
<!--- | ||
Provide the exact Magento version (example: 2.2.5) and any important information on the environment where bug is reproducible. | ||
--> | ||
1. | ||
2. | ||
|
||
### Steps to reproduce (*) | ||
<!--- | ||
Important: Provide a set of clear steps to reproduce this bug. We can not provide support without clear instructions on how to reproduce. | ||
--> | ||
1. | ||
2. | ||
|
||
### Expected result (*) | ||
<!--- Tell us what do you expect to happen. --> | ||
1. [Screenshots, logs or description] | ||
2. | ||
|
||
### Actual result (*) | ||
<!--- Tell us what happened instead. Include error messages and issues. --> | ||
1. [Screenshots, logs or description] | ||
2. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,14 @@ | ||
name: ExtDN M2 Coding Standard | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
|
||
jobs: | ||
static: | ||
name: M2 Coding Standard | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: extdn/github-actions-m2/magento-coding-standard@master |
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,119 @@ | ||
name: ExtDN M2 Integration Tests | ||
on: [ push, pull_request ] | ||
|
||
jobs: | ||
mage247: | ||
name: Magento 2 Integration Tests (Magento v2.4.7) | ||
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" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
es: | ||
image: docker.io/wardenenv/elasticsearch:8.1 | ||
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 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: M2 Integration Tests with Magento 2 | ||
uses: extdn/github-actions-m2/magento-integration-tests/8.3@master | ||
with: | ||
module_name: GhoSter_KbankPayments | ||
composer_name: ghoster/module-kbankpayments | ||
ce_version: 2.4.7 | ||
|
||
mage246: | ||
name: Magento 2 Integration Tests (Magento v2.4.6) | ||
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" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
es: | ||
image: docker.io/wardenenv/elasticsearch:8.1 | ||
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 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: M2 Integration Tests with Magento 2 | ||
uses: extdn/github-actions-m2/magento-integration-tests/8.2@master | ||
with: | ||
module_name: GhoSter_KbankPayments | ||
composer_name: ghoster/module-kbankpayments | ||
ce_version: 2.4.6 | ||
|
||
mage244: | ||
name: Magento 2 Integration Tests (Magento v2.4.4) | ||
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" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
es: | ||
image: docker.io/wardenenv/elasticsearch:7.16 | ||
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 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: M2 Integration Tests with Magento 2 | ||
uses: extdn/github-actions-m2/magento-integration-tests/7.4@master | ||
with: | ||
module_name: GhoSter_KbankPayments | ||
composer_name: ghoster/module-kbankpayments | ||
ce_version: 2.4.4 | ||
|
||
mage24: | ||
name: Magento 2 Integration Tests (Magento v2.4.3) | ||
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" --health-interval=10s --health-timeout=5s --health-retries=3 | ||
es: | ||
image: docker.io/wardenenv/elasticsearch:7.10 | ||
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 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: M2 Integration Tests with Magento 2 | ||
uses: extdn/github-actions-m2/magento-integration-tests/7.4@master | ||
with: | ||
module_name: GhoSter_KbankPayments | ||
composer_name: ghoster/module-kbankpayments | ||
ce_version: 2.4.3 |
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,4 @@ | ||
.buildpath | ||
.project | ||
.settings/ | ||
.idea/ |
Oops, something went wrong.