Update config.xml #85
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
name: m2-actions-sips2-test | |
on: [push] | |
jobs: | |
magento2-build: | |
runs-on: ubuntu-latest | |
container: ubuntu | |
name: 'm2 tests & build' | |
services: | |
mysql: | |
image: docker://mysql:8.0 | |
env: | |
MYSQL_ROOT_PASSWORD: magento | |
MYSQL_DATABASE: magento | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
opensearch: | |
image: ghcr.io/mad-i-t/magento-opensearch:2.5.0 | |
ports: | |
- 9200:9200 | |
options: -e="discovery.type=single-node" -e "plugins.security.disabled=true" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10 | |
#elasticsearch: | |
# image: docker://elasticsearch:7.1.0 | |
# ports: | |
# - 9200:9200 | |
# options: -e="discovery.type=single-node" --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=10 | |
steps: | |
### Download the third party code in custom dir### | |
- uses: actions/checkout@v3 | |
with: | |
path: Madit_Sips2 | |
- name: 'install fresh magento repo' | |
uses: MAD-I-T/magento-actions@v3.20 | |
env: | |
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}} | |
with: | |
process: 'install-magento' | |
magento_version: 2.4.6 | |
no_push: 1 ## add this arg to not push to the repo ideal for quick test on specific version | |
- name: 'launch magento2 unit test' | |
if: always() | |
uses: MAD-I-T/magento-actions@v3.20 | |
env: | |
COMPOSER_AUTH: ${{secrets.COMPOSER_AUTH}} | |
with: | |
process: 'unit-test' | |
unit_test_config: 'dev/tests/unit/phpunit.xml.dist' | |
unit_test_subset_path: '../Madit_Sips2/' | |
- name: 'phpstan' | |
if: always() | |
uses: MAD-I-T/magento-actions@v3.20 | |
with: | |
process: 'phpstan' | |
exec_path: '../Madit_Sips2/' | |
- name: 'mess detector' | |
if: always() | |
uses: MAD-I-T/magento-actions@v3.20 | |
with: | |
process: 'mess-detector' | |
md_src_path: '../Madit_Sips2/' | |
- name: 'Magento coding standard checking' | |
if: always() | |
uses: MAD-I-T/magento-actions@v3.20 | |
with: | |
process: 'phpcs-test' | |
extension: 'Madit_Sips2' | |
severity: 10 | |
standard: 'Magento2' | |