File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -108,17 +108,14 @@ export class WorkersPackages {
108108 '**/package.json' ,
109109 '.npmrc' ,
110110 'packages/tools/bin' ,
111-
112- // needed for turbo-config post-install hook
113- 'turbo.config.ts' ,
114- 'turbo.json' ,
115111 ] ,
116112 } )
117113
118114 // install pnpm deps
119115 . withMountedCache ( '/pnpm-store' , dag . cacheVolume ( `pnpm-store` ) )
120116 . withExec ( sh ( 'pnpm config set store-dir /pnpm-store' ) )
121- . withExec ( sh ( 'FORCE_COLOR=1 pnpm install --frozen-lockfile --child-concurrency=10' ) )
117+ // add CI=1 to skip turbo-config post-install hook
118+ . withExec ( sh ( 'FORCE_COLOR=1 CI=1 pnpm install --frozen-lockfile --child-concurrency=10' ) )
122119
123120 // copy over the rest of the project
124121 . withDirectory ( '/work' , this . source . directory ( '/' ) , { include : projectIncludes } )
You can’t perform that action at this time.
0 commit comments