iSC_Response::sendRedirect() transactionid= を画一的に追加せず、一定条件での継承のみとする #922 #37
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: CI/CD for EC-CUBE | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
paths: | |
- '**' | |
- '!*.md' | |
pull_request: | |
paths: | |
- '**' | |
- '!*.md' | |
jobs: | |
dockerbuild: | |
with: | |
event_name: ${{ github.event_name }} | |
uses: ./.github/workflows/dockerbuild.yml | |
phpstan: | |
with: | |
ref_name: ${{ github.ref_name }} | |
base_ref: ${{ github.base_ref }} | |
event_name: ${{ github.event_name }} | |
owner: ${{ github.repository_owner }} | |
needs: [ dockerbuild ] | |
uses: ./.github/workflows/phpstan.yml | |
unit-tests: | |
with: | |
ref_name: ${{ github.ref_name }} | |
base_ref: ${{ github.base_ref }} | |
event_name: ${{ github.event_name }} | |
owner: ${{ github.repository_owner }} | |
needs: [ dockerbuild ] | |
uses: ./.github/workflows/unit-tests.yml | |
e2e-tests: | |
with: | |
ref_name: ${{ github.ref_name }} | |
base_ref: ${{ github.base_ref }} | |
event_name: ${{ github.event_name }} | |
owner: ${{ github.repository_owner }} | |
needs: [ dockerbuild ] | |
uses: ./.github/workflows/e2e-tests.yml | |
success: | |
needs: | |
- phpstan | |
- unit-tests | |
- e2e-tests | |
uses: ./.github/workflows/success.yml |