feat(cart,checkout): move place order to checkout and support magento 2.4.7 #2806
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: Daffodil Build PR | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build PR | |
| uses: graycoreio/daffodil/.github/workflows/build.yml@develop | |
| with: | |
| cache-mode: 'read-only' | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| secrets: | |
| NX_KEY: ${{ secrets.NX_KEY }} | |
| AZURE_STORAGE_CONNECTION_STRING: ${{ github.event.pull_request.head.repo.full_name == github.repository && secrets.AZURE_NX_CACHE_READWRITE_CONNECTION_STRING || secrets.AZURE_NX_CACHE_READONLY_CONNECTION_STRING }} | |
| build-success: | |
| name: Build PR Success | |
| runs-on: ubuntu-latest | |
| needs: [build] | |
| if: always() | |
| steps: | |
| - name: Check build result | |
| run: | | |
| if [[ "${{ needs.build.result }}" != "success" ]]; then | |
| echo "Build did not succeed (result: ${{ needs.build.result }})" | |
| exit 1 | |
| fi | |