File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -183,3 +183,30 @@ jobs:
183
183
path : |
184
184
./build.tgz
185
185
./build2.tgz
186
+
187
+ check_release_dependencies :
188
+ name : Check release dependencies
189
+ needs : build
190
+ runs-on : ubuntu-latest
191
+ steps :
192
+ - uses : actions/checkout@v4
193
+ - uses : actions/setup-node@v4
194
+ with :
195
+ node-version : 18.x
196
+ cache : " yarn"
197
+ cache-dependency-path : yarn.lock
198
+ - name : Restore cached node_modules
199
+ uses : actions/cache@v4
200
+ id : node_modules
201
+ with :
202
+ path : " **/node_modules"
203
+ key : ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
204
+ - run : yarn install --frozen-lockfile
205
+ - name : Restore archived build
206
+ uses : actions/download-artifact@v4
207
+ with :
208
+ path : build
209
+ merge-multiple : true
210
+ - name : Display structure of build
211
+ run : ls -R build
212
+ - run : yarn check-release-dependencies
You can’t perform that action at this time.
0 commit comments