Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/actions/slack/action.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ jobs:
run: pnpm tslint
- name: Check for circular dependencies
run: pnpm -s ts-circular-deps:check
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'Lint check'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

api_golden_checks:
runs-on: ubuntu-latest
Expand All @@ -67,11 +62,6 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Check API Goldens
run: pnpm bazel test goldens/...
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'API Golden Checks'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

e2e:
runs-on: ubuntu-latest
Expand All @@ -90,11 +80,6 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Run e2e tests
run: pnpm e2e --flaky_test_attempts=2
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'E2E test'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

integration:
runs-on: ubuntu-latest
Expand All @@ -114,11 +99,6 @@ jobs:
- name: Run integration tests
run: pnpm integration-tests
continue-on-error: true
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'Integration test'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

test:
runs-on: ubuntu-latest-16core
Expand All @@ -137,11 +117,6 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Run tests
run: bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only -- src/...
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'Test'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

build:
runs-on: ubuntu-latest-16core
Expand All @@ -160,11 +135,6 @@ jobs:
run: pnpm install --frozen-lockfile
- name: Run tests
run: bazel build --build_tag_filters=-docs-package,-release-package -- src/...
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'Build'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

publish_snapshots:
runs-on: ubuntu-latest-4core
Expand All @@ -191,11 +161,6 @@ jobs:
run: ./scripts/circleci/publish-snapshots.sh
env:
SNAPSHOT_BUILDS_GITHUB_TOKEN: ${{ secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN }}
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'Snapshot publishing'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

deploy_doc_site:
runs-on: ubuntu-latest-4core
Expand Down Expand Up @@ -225,11 +190,6 @@ jobs:
CIRCLE_SHA1: ${{ github.sha }}
DOCS_SITE_GCP_SERVICE_KEY: ${{ secrets.DOCS_SITE_GCP_SERVICE_KEY }}
DOCS_DEPLOY_GITHUB_TOKEN: ${{ secrets.DOCS_DEPLOY_GITHUB_TOKEN }}
- uses: ./.github/actions/slack
if: failure()
with:
JOB_NAME: 'Docs site deployment'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

browserstack:
runs-on: ubuntu-latest
Expand Down
17 changes: 1 addition & 16 deletions .github/workflows/scheduled-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ jobs:
run: pnpm install
- name: Run Browser tests
run: pnpm bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only -- src/...
- uses: ./.github/actions/slack
if: ${{ failure() && github.event_name == 'push' }}
with:
JOB_NAME: 'Browser snapshot test'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

linker_snapshot_tests:
runs-on: ubuntu-latest-4core
Expand All @@ -65,11 +60,6 @@ jobs:
run: pnpm test-linker-aot
- name: Run linker tests using JIT
run: pnpm test-linker-jit
- uses: ./.github/actions/slack
if: ${{ failure() && github.event_name == 'push' }}
with:
JOB_NAME: 'Linker snapshot test'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}

monitor-docs-site:
runs-on: ubuntu-latest
Expand All @@ -85,9 +75,4 @@ jobs:
- name: Install node modules
run: pnpm install --frozen-lockfile
- name: Check Docs Site
run: ppnpm ci-docs-monitor-test
- uses: ./.github/actions/slack
if: ${{ failure() && github.event_name == 'push' }}
with:
JOB_NAME: 'Docs site monitoring'
SLACK_BOT_TOKEN: ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
run: pnpm ci-docs-monitor-test
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"tsc": "node ./node_modules/typescript/bin/tsc",
"ci-push-deploy-docs-app": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/docs-deploy/deploy-ci-push.mts",
"ci-docs-monitor-test": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/docs-deploy/monitoring/ci-test.mts",
"ci-notify-slack-failure": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/circleci/notify-slack-job-failure.mts",
"prepare": "husky"
},
"version": "20.1.0-next.0",
Expand Down
45 changes: 0 additions & 45 deletions scripts/circleci/notify-slack-job-failure.mts

This file was deleted.

Loading