@@ -83,19 +83,19 @@ jobs:
83
83
needs : build
84
84
if : ${{ needs.build.outputs.changed == 'true'}}
85
85
steps :
86
+ - name : Download build archive
87
+ uses : actions/download-artifact@v4
88
+ with :
89
+ name : build-${{ github.sha }}
90
+ - name : Unzip build artifact
91
+ run : tar xf build.tar.gz
86
92
- uses : actions/setup-node@v4
87
93
with :
88
94
node-version-file : .nvmrc
89
95
- name : install Chrome stable
90
96
run : |
91
97
sudo apt-get update
92
98
sudo apt-get install google-chrome-stable
93
- - name : Download build archive
94
- uses : actions/download-artifact@v4
95
- with :
96
- name : build-${{ github.sha }}
97
- - name : Unzip build artifact
98
- run : tar xf build.tar.gz
99
99
- name : Test setup and yarn install
100
100
run : cp config/ci.config.json config/project.json
101
101
- name : Run compat tests
@@ -110,19 +110,19 @@ jobs:
110
110
needs : build
111
111
if : ${{ needs.build.outputs.changed == 'true'}}
112
112
steps :
113
+ - name : Download build archive
114
+ uses : actions/download-artifact@v4
115
+ with :
116
+ name : build-${{ github.sha }}
117
+ - name : Unzip build artifact
118
+ run : tar xf build.tar.gz
113
119
- uses : actions/setup-node@v4
114
120
with :
115
121
node-version-file : .nvmrc
116
122
- name : install Chrome stable
117
123
run : |
118
124
sudo apt-get update
119
125
sudo apt-get install google-chrome-stable
120
- - name : Download build archive
121
- uses : actions/download-artifact@v4
122
- with :
123
- name : build-${{ github.sha }}
124
- - name : Unzip build artifact
125
- run : tar xf build.tar.gz
126
126
- name : Test setup and yarn install
127
127
run : cp config/ci.config.json config/project.json
128
128
- name : Run tests
@@ -139,19 +139,19 @@ jobs:
139
139
needs : build
140
140
if : ${{ github.event_name != 'pull_request' }}
141
141
steps :
142
+ - name : Download build archive
143
+ uses : actions/download-artifact@v4
144
+ with :
145
+ name : build-${{ github.sha }}
146
+ - name : Unzip build artifact
147
+ run : tar xf build.tar.gz
142
148
- uses : actions/setup-node@v4
143
149
with :
144
150
node-version-file : .nvmrc
145
151
- name : install Chrome stable
146
152
run : |
147
153
sudo apt-get update
148
154
sudo apt-get install google-chrome-stable
149
- - name : Download build archive
150
- uses : actions/download-artifact@v4
151
- with :
152
- name : build-${{ github.sha }}
153
- - name : Unzip build artifact
154
- run : tar xf build.tar.gz
155
155
- name : Test setup against nightly Firestore
156
156
env :
157
157
INTEG_TESTS_GOOGLE_SERVICES : ${{ secrets.FIRESTORE_SDK_NIGHTLY_PROJECT_JSON }}
@@ -172,19 +172,19 @@ jobs:
172
172
needs : build
173
173
if : ${{ needs.build.outputs.changed == 'true'}}
174
174
steps :
175
+ - name : Download build archive
176
+ uses : actions/download-artifact@v4
177
+ with :
178
+ name : build-${{ github.sha }}
179
+ - name : Unzip build artifact
180
+ run : tar xf build.tar.gz
175
181
- name : install Firefox stable
176
182
run : |
177
183
sudo apt-get update
178
184
sudo apt-get install firefox
179
185
- uses : actions/setup-node@v4
180
186
with :
181
187
node-version-file : .nvmrc
182
- - name : Download build archive
183
- uses : actions/download-artifact@v4
184
- with :
185
- name : build-${{ github.sha }}
186
- - name : Unzip build artifact
187
- run : tar xf build.tar.gz
188
188
- name : Test setup and yarn install
189
189
run : cp config/ci.config.json config/project.json
190
190
- name : Run compat tests
@@ -231,15 +231,15 @@ jobs:
231
231
needs : build
232
232
if : ${{ needs.build.outputs.changed == 'true'}}
233
233
steps :
234
- - uses : actions/setup-node@v4
235
- with :
236
- node-version-file : .nvmrc
237
234
- name : Download build archive
238
235
uses : actions/download-artifact@v4
239
236
with :
240
237
name : build-${{ github.sha }}
241
238
- name : Unzip build artifact
242
239
run : tar xf build.tar.gz
240
+ - uses : actions/setup-node@v4
241
+ with :
242
+ node-version-file : .nvmrc
243
243
- name : Test setup
244
244
run : |
245
245
cp config/ci.config.json config/project.json
0 commit comments