fix(runtime): support watch for components with custom tag names #1044
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 | |
on: | |
merge_group: | |
push: | |
branches: | |
- 'main' | |
- 'rindo/v4-dev' | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build_core: | |
name: Build | |
uses: ./.github/workflows/build.yml | |
lint_and_format: | |
name: Lint and Format | |
uses: ./.github/workflows/lint-and-format.yml | |
analysis_tests: | |
name: Analysis Tests | |
needs: [build_core] | |
uses: ./.github/workflows/test-analysis.yml | |
docs_build_tests: | |
name: Docs Build Tests | |
needs: [build_core] | |
uses: ./.github/workflows/test-docs-build.yml | |
bundler_tests: | |
name: Bundler Tests | |
needs: [build_core] | |
uses: ./.github/workflows/test-bundlers.yml | |
component_starter_tests: | |
name: Component Starter Smoke Test | |
needs: [build_core] | |
uses: ./.github/workflows/test-component-starter.yml | |
e2e_tests: | |
name: E2E Tests | |
needs: [build_core] | |
uses: ./.github/workflows/test-e2e.yml | |
unit_tests: | |
name: Unit Tests | |
needs: [build_core] | |
uses: ./.github/workflows/test-unit.yml |