@@ -25,25 +25,25 @@ jobs:
25
25
with :
26
26
cache-node-modules : true
27
27
- name : Install node modules
28
- run : yarn install --frozen-lockfile
28
+ run : pnpm install --frozen-lockfile
29
29
- name : Checking package externals
30
30
run : |
31
31
bazel build //:package_externals
32
- yarn check-package-externals $(bazel info bazel-bin)/package_externals.json
32
+ pnpm check-package-externals $(bazel info bazel-bin)/package_externals.json
33
33
- name : Checking entry-points configuration
34
34
run : |
35
35
bazel build //:entry_points_manifest
36
- yarn check-entry-point-setup $(bazel info bazel-bin)/entry_points_manifest.json
36
+ pnpm check-entry-point-setup $(bazel info bazel-bin)/entry_points_manifest.json
37
37
- name : Check OWNERS file
38
- run : yarn ownerslint
38
+ run : pnpm ownerslint
39
39
- name : Check for component id collisions
40
- run : yarn detect-component-id-collisions
40
+ run : pnpm detect-component-id-collisions
41
41
- name : Check style lint
42
- run : yarn stylelint
42
+ run : pnpm stylelint
43
43
- name : Check code lint
44
- run : yarn tslint
44
+ run : pnpm tslint
45
45
- name : Check for circular dependencies
46
- run : yarn -s ts-circular-deps:check
46
+ run : pnpm -s ts-circular-deps:check
47
47
- uses : ./.github/actions/slack
48
48
if : failure()
49
49
with :
64
64
with :
65
65
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
66
66
- name : Install node modules
67
- run : yarn install --frozen-lockfile
67
+ run : pnpm install --frozen-lockfile
68
68
- name : Check API Goldens
69
- run : yarn bazel test goldens/...
69
+ run : pnpm bazel test goldens/...
70
70
- uses : ./.github/actions/slack
71
71
if : failure()
72
72
with :
87
87
with :
88
88
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
89
89
- name : Install node modules
90
- run : yarn install --frozen-lockfile
90
+ run : pnpm install --frozen-lockfile
91
91
- name : Run e2e tests
92
- run : yarn e2e --flaky_test_attempts=2
92
+ run : pnpm e2e --flaky_test_attempts=2
93
93
- uses : ./.github/actions/slack
94
94
if : failure()
95
95
with :
@@ -110,9 +110,9 @@ jobs:
110
110
with :
111
111
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
112
112
- name : Install node modules
113
- run : yarn install --frozen-lockfile
113
+ run : pnpm install --frozen-lockfile
114
114
- name : Run integration tests
115
- run : yarn integration-tests
115
+ run : pnpm integration-tests
116
116
continue-on-error : true
117
117
- uses : ./.github/actions/slack
118
118
if : failure()
@@ -134,9 +134,9 @@ jobs:
134
134
with :
135
135
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
136
136
- name : Install node modules
137
- run : yarn install --frozen-lockfile
137
+ run : pnpm install --frozen-lockfile
138
138
- name : Run linker AOT tests
139
- run : yarn test-linker-aot
139
+ run : pnpm test-linker-aot
140
140
- uses : ./.github/actions/slack
141
141
if : failure()
142
142
with :
@@ -157,9 +157,9 @@ jobs:
157
157
with :
158
158
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
159
159
- name : Install node modules
160
- run : yarn install --frozen-lockfile
160
+ run : pnpm install --frozen-lockfile
161
161
- name : Run linker JIT tests
162
- run : yarn test-linker-jit
162
+ run : pnpm test-linker-jit
163
163
- uses : ./.github/actions/slack
164
164
if : failure()
165
165
with :
@@ -180,7 +180,7 @@ jobs:
180
180
with :
181
181
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
182
182
- name : Install node modules
183
- run : yarn install --frozen-lockfile
183
+ run : pnpm install --frozen-lockfile
184
184
- name : Run tests
185
185
run : bazel test --build_tag_filters=-e2e --test_tag_filters=-e2e --build_tests_only -- src/...
186
186
env :
@@ -205,7 +205,7 @@ jobs:
205
205
with :
206
206
google_credential : ${{ secrets.RBE_TRUSTED_BUILDS_USER }}
207
207
- name : Install node modules
208
- run : yarn install --frozen-lockfile
208
+ run : pnpm install --frozen-lockfile
209
209
- name : Run tests
210
210
run : bazel build --build_tag_filters=-docs-package,-release-package -- src/...
211
211
- uses : ./.github/actions/slack
@@ -226,15 +226,15 @@ jobs:
226
226
- name : Setup Bazel RBE
227
227
uses : angular/dev-infra/github-actions/bazel/configure-remote@e4bf37af223483ce00f9316d227fd62cd744dc4b
228
228
- name : Install node modules
229
- run : yarn install --frozen-lockfile
229
+ run : pnpm install --frozen-lockfile
230
230
- name : Build and Verify Release Output
231
- run : yarn build-and-check-release-output
231
+ run : pnpm build-and-check-release-output
232
232
- name : Verify tooling setup
233
- run : yarn check-tooling-setup
233
+ run : pnpm check-tooling-setup
234
234
- name : Build Docs Content
235
- run : yarn build-docs-content
235
+ run : pnpm build-docs-content
236
236
- name : Build Docs Content
237
- run : yarn build-docs-content
237
+ run : pnpm build-docs-content
238
238
- name : Publish Snapshots
239
239
run : ./scripts/circleci/publish-snapshots.sh
240
240
env :
@@ -261,13 +261,13 @@ jobs:
261
261
- name : Setup Bazel RBE
262
262
uses : angular/dev-infra/github-actions/bazel/configure-remote@e4bf37af223483ce00f9316d227fd62cd744dc4b
263
263
- name : Install node modules
264
- run : yarn install --frozen-lockfile
264
+ run : pnpm install --frozen-lockfile
265
265
- name : Build and Verify Release Output
266
- run : yarn build-and-check-release-output
266
+ run : pnpm build-and-check-release-output
267
267
- name : Verify tooling setup
268
- run : yarn check-tooling-setup
268
+ run : pnpm check-tooling-setup
269
269
- name : Deploy the docs app
270
- run : yarn ci-push-deploy-docs-app
270
+ run : pnpm ci-push-deploy-docs-app
271
271
env :
272
272
CIRCLE_BRANCH : ${{ github.ref_name }}
273
273
CIRCLE_SHA1 : ${{ github.sha }}
@@ -291,7 +291,7 @@ jobs:
291
291
with :
292
292
cache-node-modules : true
293
293
- name : Install node modules
294
- run : yarn install --frozen-lockfile
294
+ run : pnpm install --frozen-lockfile
295
295
- name : Setup Bazel
296
296
uses : angular/dev-infra/github-actions/bazel/setup@e4bf37af223483ce00f9316d227fd62cd744dc4b
297
297
- name : Setup Browserstack Variables
0 commit comments