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 @@ -145,3 +145,30 @@ jobs:
145
145
path : |
146
146
./build.tgz
147
147
./build2.tgz
148
+
149
+ check_release_dependencies :
150
+ name : Check release dependencies
151
+ needs : build_and_lint
152
+ runs-on : ubuntu-latest
153
+ steps :
154
+ - uses : actions/checkout@v4
155
+ - uses : actions/setup-node@v4
156
+ with :
157
+ node-version : 18.x
158
+ cache : " yarn"
159
+ cache-dependency-path : yarn.lock
160
+ - name : Restore cached node_modules
161
+ uses : actions/cache@v4
162
+ id : node_modules
163
+ with :
164
+ path : " **/node_modules"
165
+ key : ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
166
+ - run : yarn install --frozen-lockfile
167
+ - name : Restore archived build
168
+ uses : actions/download-artifact@v4
169
+ with :
170
+ path : build
171
+ merge-multiple : true
172
+ - name : Display structure of build
173
+ run : ls -R build
174
+ - run : yarn check-release-dependencies
You can’t perform that action at this time.
0 commit comments