feat(address-finder): Upgrade to version 4.2.0 #3
Workflow file for this run
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: Magento 2.4 CI with PHP 7.4 | |
on: | |
- push | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Launch Magento test environment | |
run: make up-74 | |
- name: Run install script | |
run: >- | |
docker-compose exec -T web bash -c 'dockerize -wait tcp://db:3306 -timeout 60m /usr/local/bin/install-magento' | |
env: | |
COMPOSE_INTERACTIVE_NO_CLI: "1" | |
- uses: cypress-io/github-action@v2 | |
with: | |
project: ./test/e2e | |
config: baseUrl=http://localhost:3000 | |
env: | |
CYPRESS_API_KEY: ${{ secrets.API_KEY }} | |
CYPRESS_MAGENTO_VERSION: "2.4" |