Skip to content

Commit 507a13f

Browse files
committed
[feat] add mage247, fix mage244
1 parent deba6d4 commit 507a13f

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

.github/workflows/integration.yml

+30-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@ name: ExtDN M2 Integration Tests
22
on: [ push, pull_request ]
33

44
jobs:
5+
mage247:
6+
name: Magento 2 Integration Tests (Magento v2.4.7)
7+
runs-on: ubuntu-latest
8+
services:
9+
mysql:
10+
image: mysql:8.0
11+
env:
12+
MYSQL_ROOT_PASSWORD: root
13+
ports:
14+
- 3306:3306
15+
options: --tmpfs /tmp:rw --tmpfs /var/lib/mysql:rw --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
16+
es:
17+
image: docker.io/wardenenv/elasticsearch:8.1
18+
ports:
19+
- 9200:9200
20+
env:
21+
'discovery.type': single-node
22+
'xpack.security.enabled': false
23+
ES_JAVA_OPTS: "-Xms64m -Xmx512m"
24+
options: --health-cmd="curl localhost:9200/_cluster/health?wait_for_status=yellow&timeout=60s" --health-interval=10s --health-timeout=5s --health-retries=3
25+
steps:
26+
- uses: actions/checkout@v2
27+
- name: M2 Integration Tests with Magento 2
28+
uses: extdn/github-actions-m2/magento-integration-tests/8.3@master
29+
with:
30+
module_name: GhoSter_ChangeCustomerPassword
31+
composer_name: ghoster/changecustomerpassword
32+
ce_version: 2.4.7
33+
534
mage246:
635
name: Magento 2 Integration Tests (Magento v2.4.6)
736
runs-on: ubuntu-latest
@@ -54,7 +83,7 @@ jobs:
5483
steps:
5584
- uses: actions/checkout@v2
5685
- name: M2 Integration Tests with Magento 2
57-
uses: extdn/github-actions-m2/magento-integration-tests/8.1@master
86+
uses: extdn/github-actions-m2/magento-integration-tests/7.4@master
5887
with:
5988
module_name: GhoSter_ChangeCustomerPassword
6089
composer_name: ghoster/changecustomerpassword

0 commit comments

Comments
 (0)