chore(npm): Attempt to fix issue with Trusted Publishers when using reusable workflows #14220
Workflow file for this run
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' | |
| - 'stencil/v4-dev' | |
| pull_request: | |
| branches: | |
| - '**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| build_core: | |
| name: Build | |
| uses: ./.github/workflows/build.yml | |
| lint_and_format: | |
| name: Lint and Format | |
| uses: ./.github/workflows/lint-and-format.yml | |
| type_tests: | |
| name: Type Tests | |
| needs: [build_core] | |
| uses: ./.github/workflows/test-types.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 | |
| copytask_tests: | |
| name: Copy Task Tests | |
| needs: [build_core] | |
| uses: ./.github/workflows/test-copytask.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 | |
| wdio_tests: | |
| name: WebdriverIO Tests | |
| needs: [build_core] | |
| uses: ./.github/workflows/test-wdio.yml |