Skip to content

chore(deps-dev): bump nano-spawn from 2.0.0 to 2.1.0 #1902

chore(deps-dev): bump nano-spawn from 2.0.0 to 2.1.0

chore(deps-dev): bump nano-spawn from 2.0.0 to 2.1.0 #1902

Workflow file for this run

name: CI/CD for EC-CUBE
on:
push:
branches:
- '*'
tags:
- '*'
paths:
- '**'
- '!*.md'
pull_request:
paths:
- '**'
- '!*.md'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rector:
uses: ./.github/workflows/rector.yml
phpstan:
uses: ./.github/workflows/phpstan.yml
php-cs-fixer:
uses: ./.github/workflows/php-cs-fixer.yml
unit-test:
needs: [ rector, phpstan, php-cs-fixer ]
uses: ./.github/workflows/unit-test.yml
e2e-test:
needs: [ rector, phpstan, php-cs-fixer ]
uses: ./.github/workflows/e2e-test.yml
# PR/push では最新 PHP のみ。全バージョンは weekly-test.yml が週次で回す
with:
php-versions: "['8.5']"
dockerbuild:
uses: ./.github/workflows/dockerbuild.yml
permissions:
contents: read
packages: write
plugin-test:
needs: [ unit-test, e2e-test ]
uses: ./.github/workflows/plugin-test.yml
with:
php-versions: "['8.5']"
e2e-test-throttling:
needs: [ plugin-test ]
uses: ./.github/workflows/e2e-test-throttling.yml
with:
php-versions: "['8.5']"
# deny-test:
# needs: [ plugin-test ]
# uses: ./.github/workflows/deny-test.yml
success:
needs: [ e2e-test-throttling, dockerbuild ]
runs-on: ubuntu-latest
steps:
- name: success
run: echo "::notice::success!"
coverage:
needs: [ unit-test ] # PHPUnit coverage only, no need to wait for e2e-test
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
permissions:
contents: read
code-quality: write
secrets: inherit # Codecov アップロードに CODECOV_TOKEN が必要
uses: ./.github/workflows/coverage.yml