Merge pull request #2829 from aragon999/fix/loop-null-coalescing #1318
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: Run | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- "5.7" | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
check-php-code: | |
name: PHPStan and CSFixer | |
uses: ./.github/workflows/check-php-code.yml | |
secrets: inherit | |
check-js-code: | |
name: JsLinter and Jest tests | |
uses: ./.github/workflows/check-js-code.yml | |
secrets: inherit | |
php-unit: | |
name: PHPUnit tests | |
uses: ./.github/workflows/phpunit.yml | |
secrets: inherit | |
needs: [ check-php-code, check-js-code ] | |
e2e-tests: | |
name: E2E | |
uses: ./.github/workflows/end-to-end.yml | |
secrets: inherit | |
needs: [ php-unit ] |