ご注文完了時のメールチェック修正 #1345
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 | |
php-cs-fixer: | |
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/php-cs-fixer.yml | |
phpstan: | |
with: | |
ref_name: ${{ github.ref_name }} | |
base_ref: ${{ github.base_ref }} | |
event_name: ${{ github.event_name }} | |
owner: ${{ github.repository_owner }} | |
needs: [ php-cs-fixer ] | |
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: [ php-cs-fixer ] | |
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: [ php-cs-fixer ] | |
uses: ./.github/workflows/e2e-tests.yml | |
success: | |
needs: | |
- phpstan | |
- unit-tests | |
- e2e-tests | |
uses: ./.github/workflows/success.yml |