Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. name: Magento
  2. on: pull_request
  3.  
  4. jobs:
  5. build:
  6. runs-on: ubuntu-latest
  7. container:
  8. image: davidalger/php:7.1
  9. env:
  10. MAGE_MODE: production
  11. steps:
  12. - uses: actions/checkout@v1
  13. - run: composer global require hirak/prestissimo
  14. - run: composer install --prefer-dist --no-interaction --no-dev --optimize-autoloader
  15. - run: php -d memory_limit=512M bin/magento setup:di:compile
  16. - run: php -d memory_limit=512M bin/magento setup:static-content:deploy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement