chore: update workflows #14798
This file contains hidden or 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 | |
| on: | |
| merge_group: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'v5' | |
| pull_request: | |
| branches: | |
| - '**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Quality and Build run in parallel | |
| quality: | |
| name: Quality | |
| uses: ./.github/workflows/quality.yml | |
| build: | |
| name: Build | |
| uses: ./.github/workflows/build.yml | |
| # Unit tests run after build | |
| unit_tests: | |
| name: Unit Tests | |
| needs: [build] | |
| uses: ./.github/workflows/test-unit.yml | |
| # Integration test suites run after unit tests | |
| build_tests: | |
| name: Build Tests | |
| needs: [unit_tests] | |
| uses: ./.github/workflows/test-build.yml | |
| integration_tests: | |
| name: Integration Tests | |
| needs: [unit_tests] | |
| uses: ./.github/workflows/test-integration.yml | |
| runtime_tests: | |
| name: Runtime Tests | |
| needs: [unit_tests] | |
| uses: ./.github/workflows/test-runtime.yml | |
| special_config_tests: | |
| name: Special Config Tests | |
| needs: [unit_tests] | |
| uses: ./.github/workflows/test-special-config.yml | |
| ssr_tests: | |
| name: SSR Tests | |
| needs: [unit_tests] | |
| uses: ./.github/workflows/test-ssr.yml | |
| component_starter_tests: | |
| name: Component Starter Smoke Test | |
| needs: [unit_tests] | |
| uses: ./.github/workflows/test-component-starter.yml |