Skip to content

Commit

Permalink
Tests fix attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
Jekabs Aizpurvs committed Aug 27, 2024
1 parent 0c49666 commit 9a7451f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,15 @@ jobs:
- name: Install the extension in Magento
run: docker exec magento-project-community-edition composer require cmdotcom-plugins/magento2-payments:@dev

# # This step is optional but good to include in your pipeline.
# - name: Run setup:di:compile
# run: docker exec magento-project-community-edition php bin/magento setup:di:compile
- name: Fix permissions for files
run: docker exec magento-project-community-edition sh -c 'find var generated vendor pub/static pub/media app/etc -type f -exec chmod u+w {} +'

- name: Fix permissions for directories
run: docker exec magento-project-community-edition sh -c 'find var generated vendor pub/static pub/media app/etc -type d -exec chmod u+w {} +'

# This step is optional but good to include in your pipeline.
- name: Run setup:di:compile
run: docker exec magento-project-community-edition php bin/magento setup:di:compile

# I'm not sure why, but this step is required. You might end up with loads and loads of failed tests.
- name: Enable developer mode
Expand Down

0 comments on commit 9a7451f

Please sign in to comment.