44
44
run : pnpm tslint
45
45
- name : Check for circular dependencies
46
46
run : pnpm -s ts-circular-deps:check
47
- - uses : ./.github/actions/slack
48
- if : failure()
49
- with :
50
- JOB_NAME : ' Lint check'
51
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
52
47
53
48
api_golden_checks :
54
49
runs-on : ubuntu-latest
67
62
run : pnpm install --frozen-lockfile
68
63
- name : Check API Goldens
69
64
run : pnpm bazel test goldens/...
70
- - uses : ./.github/actions/slack
71
- if : failure()
72
- with :
73
- JOB_NAME : ' API Golden Checks'
74
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
75
65
76
66
e2e :
77
67
runs-on : ubuntu-latest
90
80
run : pnpm install --frozen-lockfile
91
81
- name : Run e2e tests
92
82
run : pnpm e2e --flaky_test_attempts=2
93
- - uses : ./.github/actions/slack
94
- if : failure()
95
- with :
96
- JOB_NAME : ' E2E test'
97
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
98
83
99
84
integration :
100
85
runs-on : ubuntu-latest
@@ -114,11 +99,6 @@ jobs:
114
99
- name : Run integration tests
115
100
run : pnpm integration-tests
116
101
continue-on-error : true
117
- - uses : ./.github/actions/slack
118
- if : failure()
119
- with :
120
- JOB_NAME : ' Integration test'
121
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
122
102
123
103
test :
124
104
runs-on : ubuntu-latest-16core
@@ -137,11 +117,6 @@ jobs:
137
117
run : pnpm install --frozen-lockfile
138
118
- name : Run tests
139
119
run : bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only -- src/...
140
- - uses : ./.github/actions/slack
141
- if : failure()
142
- with :
143
- JOB_NAME : ' Test'
144
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
145
120
146
121
build :
147
122
runs-on : ubuntu-latest-16core
@@ -160,11 +135,6 @@ jobs:
160
135
run : pnpm install --frozen-lockfile
161
136
- name : Run tests
162
137
run : bazel build --build_tag_filters=-docs-package,-release-package -- src/...
163
- - uses : ./.github/actions/slack
164
- if : failure()
165
- with :
166
- JOB_NAME : ' Build'
167
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
168
138
169
139
publish_snapshots :
170
140
runs-on : ubuntu-latest-4core
@@ -191,11 +161,6 @@ jobs:
191
161
run : ./scripts/circleci/publish-snapshots.sh
192
162
env :
193
163
SNAPSHOT_BUILDS_GITHUB_TOKEN : ${{ secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN }}
194
- - uses : ./.github/actions/slack
195
- if : failure()
196
- with :
197
- JOB_NAME : ' Snapshot publishing'
198
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
199
164
200
165
deploy_doc_site :
201
166
runs-on : ubuntu-latest-4core
@@ -225,11 +190,6 @@ jobs:
225
190
CIRCLE_SHA1 : ${{ github.sha }}
226
191
DOCS_SITE_GCP_SERVICE_KEY : ${{ secrets.DOCS_SITE_GCP_SERVICE_KEY }}
227
192
DOCS_DEPLOY_GITHUB_TOKEN : ${{ secrets.DOCS_DEPLOY_GITHUB_TOKEN }}
228
- - uses : ./.github/actions/slack
229
- if : failure()
230
- with :
231
- JOB_NAME : ' Docs site deployment'
232
- SLACK_BOT_TOKEN : ${{ secrets.ANGULAR_ROBOT_SLACK_TOKEN }}
233
193
234
194
browserstack :
235
195
runs-on : ubuntu-latest
0 commit comments