Skip to content

Commit 9ea2af8

Browse files
committed
chore: ci
1 parent 0b1a951 commit 9ea2af8

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/node.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/publish-libs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

packages/mos-gateway/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY . .
88
RUN corepack enable
99
RUN yarn install --immutable
1010
RUN yarn run pinst --disable
11-
RUN yarn lerna run --scope \*\*/mos-gateway --include-dependencies --stream build
11+
RUN yarn build
1212
RUN yarn workspaces focus mos-gateway --production # purge dev-dependencies
1313

1414
# DEPLOY IMAGE

packages/playout-gateway/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY . .
88
RUN corepack enable
99
RUN yarn install --immutable
1010
RUN yarn run pinst --disable
11-
RUN yarn lerna run --scope \*\*/playout-gateway --include-dependencies --stream build
11+
RUN yarn build
1212
RUN yarn workspaces focus playout-gateway --production # purge dev-dependencies
1313

1414
# DEPLOY IMAGE

0 commit comments

Comments
 (0)