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