受注編集画面で数値項目に空文字を入力された場合にシステムエラーになるのを修正 #2047
Workflow file for this run
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 |