From 96abbdf5d7cbe0f1523a79a4798599419cfe293e Mon Sep 17 00:00:00 2001 From: Petar Date: Tue, 3 May 2022 11:02:32 +0200 Subject: [PATCH] Add missing env variables --- magento-integration-tests/7.4/action.yml | 8 +++++++- magento-integration-tests/8.1/action.yml | 6 ++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/magento-integration-tests/7.4/action.yml b/magento-integration-tests/7.4/action.yml index 97324ae..840438e 100644 --- a/magento-integration-tests/7.4/action.yml +++ b/magento-integration-tests/7.4/action.yml @@ -41,8 +41,14 @@ inputs: runs: using: 'docker' image: 'docker://extdn/magento-integration-tests-action:7.4-latest' + env: + MODULE_NAME: ${{ inputs.module_name }} + COMPOSER_NAME: ${{ inputs.composer_name }} + MAGENTO_VERSION: ${{ inputs.ce_version }} + PROJECT_NAME: ${{ inputs.project_name }} + COMPOSER_MEMORY_LIMIT: -1 branding: - icon: 'code' + icon: 'code' color: 'green' diff --git a/magento-integration-tests/8.1/action.yml b/magento-integration-tests/8.1/action.yml index 7647b00..166ff7d 100644 --- a/magento-integration-tests/8.1/action.yml +++ b/magento-integration-tests/8.1/action.yml @@ -41,6 +41,12 @@ inputs: runs: using: 'docker' image: 'docker://extdn/magento-integration-tests-action:8.1-latest' + env: + MODULE_NAME: ${{ inputs.module_name }} + COMPOSER_NAME: ${{ inputs.composer_name }} + MAGENTO_VERSION: ${{ inputs.ce_version }} + PROJECT_NAME: ${{ inputs.project_name }} + COMPOSER_MEMORY_LIMIT: -1 branding: icon: 'code'