fix!: unsupported sales channel migration #1235
Workflow file for this run
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: Integration | |
| env: | |
| EXTENSION_NAME: ${{ github.event.repository.name }} | |
| PLATFORM_BRANCH: trunk | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - trunk | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| danger: | |
| name: Danger Check | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Run Danger PHP | |
| uses: docker://ghcr.io/shyim/danger-php:latest | |
| with: | |
| args: ci | |
| env: | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GITHUB_PULL_REQUEST_ID: ${{ github.event.pull_request.number }} | |
| build_zip: | |
| name: Build and validate zip | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Build | |
| uses: shopware/github-actions/build-zip@main | |
| with: | |
| extensionName: ${{ env.EXTENSION_NAME }} | |
| phpunit: | |
| name: PHPUnit | |
| uses: ./.github/workflows/action-phpunit.yml | |
| with: | |
| extension_name: ${{ github.event.repository.name }} | |
| platform_branch: trunk | |
| smoke_test: | |
| name: Smoke test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup extension | |
| uses: shopware/github-actions/setup-extension@main | |
| with: | |
| extensionName: ${{ env.EXTENSION_NAME }} | |
| install: true | |
| install-admin: true | |
| install-storefront: true | |
| extraRepositories: | | |
| { | |
| "${{ env.EXTENSION_NAME }}": { | |
| "type": "path", | |
| "url": "custom/plugins/${{ env.EXTENSION_NAME }}", | |
| "symlink": true | |
| } | |
| } | |
| - name: Uninstall Plugin | |
| run: php bin/console plugin:uninstall ${{ env.EXTENSION_NAME }} |