Run playwright via shopware-cli #15
This file contains hidden or 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: Run playwright via shopware-cli | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| visual-admin: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.2" | |
| - name: Install shopware-cli | |
| uses: shopware/shopware-cli-action@v3 | |
| - name: Create Shopware project | |
| run: shopware-cli project create swcli latest --no-interaction --docker --ci github | |
| - name: Start Docker services | |
| working-directory: swcli | |
| run: docker compose up -d |