File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 32
32
uses : actions/setup-node@v3
33
33
with :
34
34
node-version : 16.x
35
+ - name : Bump Node memory limit
36
+ run : echo "NODE_OPTIONS=--max_old_space_size=4096" >> $GITHUB_ENV
35
37
- name : Merge master into release
36
38
uses : actions/github-script@v6
37
39
with :
Original file line number Diff line number Diff line change @@ -151,6 +151,12 @@ async function publishPackageInCI(
151
151
stderrText += data . toString ( ) ;
152
152
} ) ;
153
153
await spawnPromise ;
154
+ if ( process . env . VERBOSE_NPM_LOGGING === 'true' ) {
155
+ console . log ( `stdout for ${ pkg } publish:` ) ;
156
+ console . log ( stdoutText ) ;
157
+ console . log ( `stderr for ${ pkg } publish:` ) ;
158
+ console . error ( stderrText ) ;
159
+ }
154
160
return spawnPromise ;
155
161
} catch ( err ) {
156
162
console . log ( `Error publishing ${ pkg } ` ) ;
You can’t perform that action at this time.
0 commit comments