File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -357,7 +357,7 @@ jobs:
357357
358358 cd packages
359359 yarn install
360- yarn lerna run --scope \*\*/${{ matrix.gateway-name }} --include-dependencies --stream build
360+ yarn build
361361 yarn run pinst --disable
362362 yarn workspaces focus ${{ matrix.gateway-name }} --production
363363 - name : Set up Docker Buildx
@@ -467,7 +467,7 @@ jobs:
467467 cd packages
468468 yarn config set cacheFolder /home/runner/${{ matrix.package-name }}-cache
469469 yarn install
470- yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
470+ yarn build
471471 env :
472472 CI : true
473473 - name : Run typecheck and linter
@@ -539,7 +539,7 @@ jobs:
539539 cd packages
540540 yarn config set cacheFolder /home/runner/test-packages-cache
541541 yarn install
542- yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
542+ yarn build
543543 env :
544544 CI : true
545545 - name : Run tests
Original file line number Diff line number Diff line change @@ -68,14 +68,14 @@ jobs:
6868 - name : Use Node.js
6969 uses : actions/setup-node@v6
7070 with :
71- node-version-file : ' .node-version'
71+ node-version-file : " .node-version"
7272 - name : Prepare Environment
7373 run : |
7474 corepack enable
7575
7676 cd packages
7777 yarn install
78- yarn lerna run --scope \*\*/${{ matrix.package-name }} --include-dependencies --stream build
78+ yarn build
7979 env :
8080 CI : true
8181 - name : Run typecheck and linter
@@ -145,7 +145,7 @@ jobs:
145145 - name : Use Node.js
146146 uses : actions/setup-node@v6
147147 with :
148- node-version-file : ' .node-version'
148+ node-version-file : " .node-version"
149149 - name : Prepare Environment
150150 run : |
151151 corepack enable
@@ -222,7 +222,7 @@ jobs:
222222 - name : Use Node.js
223223 uses : actions/setup-node@v6
224224 with :
225- node-version-file : ' .node-version'
225+ node-version-file : " .node-version"
226226
227227 - name : Download release artifact
228228 uses : actions/download-artifact@v6
Original file line number Diff line number Diff line change 88RUN corepack enable
99RUN yarn install --immutable
1010RUN yarn run pinst --disable
11- RUN yarn lerna run --scope \*\* /mos-gateway --include-dependencies --stream build
11+ RUN yarn build
1212RUN yarn workspaces focus mos-gateway --production # purge dev-dependencies
1313
1414# DEPLOY IMAGE
Original file line number Diff line number Diff line change 88RUN corepack enable
99RUN yarn install --immutable
1010RUN yarn run pinst --disable
11- RUN yarn lerna run --scope \*\* /playout-gateway --include-dependencies --stream build
11+ RUN yarn build
1212RUN yarn workspaces focus playout-gateway --production # purge dev-dependencies
1313
1414# DEPLOY IMAGE
You can’t perform that action at this time.
0 commit comments