21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- name : Initialize environment
24
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
24
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
25
25
- name : Install node modules
26
26
run : yarn install --immutable
27
27
- name : Generate JSON schema types
@@ -42,11 +42,11 @@ jobs:
42
42
runs-on : ubuntu-latest
43
43
steps :
44
44
- name : Initialize environment
45
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
45
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
46
46
- name : Setup Bazel
47
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
47
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
48
48
- name : Setup Bazel RBE
49
- uses : angular/dev-infra/github-actions/bazel/configure-remote@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
49
+ uses : angular/dev-infra/github-actions/bazel/configure-remote@a3d0749c4d64959e85843fbeb54507e830be0f44
50
50
- name : Install node modules
51
51
run : yarn install --immutable
52
52
- name : Build release targets
@@ -56,11 +56,11 @@ jobs:
56
56
runs-on : ubuntu-latest
57
57
steps :
58
58
- name : Initialize environment
59
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
59
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
60
60
- name : Setup Bazel
61
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
61
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
62
62
- name : Setup Bazel RBE
63
- uses : angular/dev-infra/github-actions/bazel/configure-remote@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
63
+ uses : angular/dev-infra/github-actions/bazel/configure-remote@a3d0749c4d64959e85843fbeb54507e830be0f44
64
64
- name : Install node modules
65
65
run : yarn install --immutable
66
66
- name : Run module and package tests
@@ -90,13 +90,13 @@ jobs:
90
90
runs-on : ${{ matrix.os }}
91
91
steps :
92
92
- name : Initialize environment
93
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
93
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
94
94
- name : Install node modules
95
95
run : yarn install --immutable
96
96
- name : Setup Bazel
97
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
97
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
98
98
- name : Setup Bazel RBE
99
- uses : angular/dev-infra/github-actions/bazel/configure-remote@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
99
+ uses : angular/dev-infra/github-actions/bazel/configure-remote@a3d0749c4d64959e85843fbeb54507e830be0f44
100
100
- name : Run CLI E2E tests
101
101
run : yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
102
102
@@ -111,13 +111,13 @@ jobs:
111
111
runs-on : ${{ matrix.os }}
112
112
steps :
113
113
- name : Initialize environment
114
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
114
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
115
115
- name : Install node modules
116
116
run : yarn install --immutable
117
117
- name : Setup Bazel
118
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
118
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
119
119
- name : Setup Bazel RBE
120
- uses : angular/dev-infra/github-actions/bazel/configure-remote@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
120
+ uses : angular/dev-infra/github-actions/bazel/configure-remote@a3d0749c4d64959e85843fbeb54507e830be0f44
121
121
- name : Run CLI E2E tests
122
122
run : yarn bazel test --define=E2E_SHARD_TOTAL=3 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}
123
123
@@ -132,13 +132,13 @@ jobs:
132
132
runs-on : ${{ matrix.os }}
133
133
steps :
134
134
- name : Initialize environment
135
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
135
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
136
136
- name : Install node modules
137
137
run : yarn install --immutable
138
138
- name : Setup Bazel
139
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
139
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
140
140
- name : Setup Bazel RBE
141
- uses : angular/dev-infra/github-actions/bazel/configure-remote@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
141
+ uses : angular/dev-infra/github-actions/bazel/configure-remote@a3d0749c4d64959e85843fbeb54507e830be0f44
142
142
- name : Run CLI E2E tests
143
143
run : yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }}
144
144
@@ -149,13 +149,13 @@ jobs:
149
149
SAUCE_TUNNEL_IDENTIFIER : angular-cli-${{ github.workflow }}-${{ github.run_number }}
150
150
steps :
151
151
- name : Initialize environment
152
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
152
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
153
153
- name : Install node modules
154
154
run : yarn install --immutable
155
155
- name : Setup Bazel
156
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
156
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
157
157
- name : Setup Bazel RBE
158
- uses : angular/dev-infra/github-actions/bazel/configure-remote@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
158
+ uses : angular/dev-infra/github-actions/bazel/configure-remote@a3d0749c4d64959e85843fbeb54507e830be0f44
159
159
- name : Run E2E Browser tests
160
160
env :
161
161
SAUCE_USERNAME : ${{ vars.SAUCE_USERNAME }}
@@ -182,11 +182,11 @@ jobs:
182
182
CIRCLE_BRANCH : ${{ github.ref_name }}
183
183
steps :
184
184
- name : Initialize environment
185
- uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
185
+ uses : angular/dev-infra/github-actions/npm/checkout-and-setup-node@a3d0749c4d64959e85843fbeb54507e830be0f44
186
186
- name : Install node modules
187
187
run : yarn install --immutable
188
188
- name : Setup Bazel
189
- uses : angular/dev-infra/github-actions/bazel/setup@6a7bc4b11c49adc81d7137fe9eff02ac6818b85d
189
+ uses : angular/dev-infra/github-actions/bazel/setup@a3d0749c4d64959e85843fbeb54507e830be0f44
190
190
- run : yarn admin snapshots --verbose
191
191
env :
192
192
SNAPSHOT_BUILDS_GITHUB_TOKEN : ${{ secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN }}
0 commit comments