refactor(ng-dev): use the same symbols for failure, success and pendi… #8012
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: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: {} | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
# Because the checkout and setup node action is contained in the dev-infra repo, we must | |
# checkout the repo to be able to run the action we have created. Other repos will skip | |
# this step. | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./github-actions/npm/checkout-and-setup-node | |
- uses: ./github-actions/bazel/setup | |
- uses: ./github-actions/bazel/configure-remote | |
- run: yarn install --immutable | |
- name: Confirm code builds with typescript as expected | |
run: yarn tsc -p tsconfig.json | |
test: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
# Because the checkout and setup node action is contained in the dev-infra repo, we must | |
# checkout the repo to be able to run the action we have created. Other repos will skip | |
# this step. | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./github-actions/npm/checkout-and-setup-node | |
- uses: ./github-actions/bazel/setup | |
- uses: ./github-actions/bazel/configure-remote | |
- run: yarn install --immutable | |
- run: yarn bazel test -- //... | |
test-win: | |
timeout-minutes: 30 | |
runs-on: windows-latest | |
steps: | |
# Because the checkout and setup node action is contained in the dev-infra repo, we must | |
# checkout the repo to be able to run the action we have created. Other repos will skip | |
# this step. | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./github-actions/npm/checkout-and-setup-node | |
- uses: ./github-actions/bazel/setup | |
- uses: ./github-actions/bazel/configure-remote | |
- run: yarn install --immutable | |
- run: yarn bazel test --test_tag_filters=windows --build_tests_only -- ... -bazel/remote-execution/... | |
test-macos: | |
timeout-minutes: 30 | |
runs-on: macos-latest | |
steps: | |
# Because the checkout and setup node action is contained in the dev-infra repo, we must | |
# checkout the repo to be able to run the action we have created. Other repos will skip | |
# this step. | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./github-actions/npm/checkout-and-setup-node | |
- uses: ./github-actions/bazel/setup | |
- run: yarn install --immutable | |
- run: yarn bazel test --sandbox_writable_path="$HOME/Library/Application Support" --test_tag_filters=macos --build_tests_only -- //... | |
workflow-perf: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
# Because the checkout and setup node action is contained in the dev-infra repo, we must | |
# checkout the repo to be able to run the action we have created. Other repos will skip | |
# this step. | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./github-actions/npm/checkout-and-setup-node | |
- uses: ./github-actions/bazel/setup | |
- run: yarn install --immutable | |
- run: yarn ng-dev perf workflows --json | |
# Always run this step to ensure that the job always is successful | |
- if: ${{ always() }} | |
run: exit 0 |