File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
.github/actions/next-stats-action/src Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,8 @@ if (!allowedActions.has(actionInfo.actionName) && !actionInfo.isRelease) {
111
111
// changes from merging latest changes
112
112
` && pnpm install --no-frozen-lockfile`
113
113
: ' && yarn install --network-timeout 1000000'
114
- } `
114
+ } `,
115
+ { env : { PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD : '1' } }
115
116
)
116
117
117
118
await exec . spawnPromise (
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ exec.spawn = function spawn(command = '', opts = {}) {
36
36
37
37
exec . spawnPromise = function spawnPromise ( command = '' , opts = { } ) {
38
38
return new Promise ( ( resolve , reject ) => {
39
- const child = exec . spawn ( command )
39
+ const child = exec . spawn ( command , opts )
40
40
child . on ( 'exit' , ( code , signal ) => {
41
41
if ( code || signal ) {
42
42
return reject (
You can’t perform that action at this time.
0 commit comments