Skip to content

Commit 41cd97d

Browse files
committed
Iterate
1 parent e4a3dbb commit 41cd97d

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build_desktop_linux.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133

134134
- name: Install Deps
135135
working-directory: apps/desktop
136-
run: pnpm install --frozen-lockfile
136+
run: "pnpm install --frozen-lockfile --filter element-desktop"
137137

138138
- name: "Get modified files"
139139
id: changed_files

.github/workflows/build_desktop_macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: Install Deps
123123
working-directory: apps/desktop
124-
run: "pnpm install --frozen-lockfile"
124+
run: "pnpm install --frozen-lockfile --filter element-desktop"
125125

126126
- name: Build Natives
127127
if: steps.cache.outputs.cache-hit != 'true'

.github/workflows/build_desktop_prepare.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565

6666
- name: Install Deps
6767
working-directory: apps/desktop
68-
run: "pnpm install --frozen-lockfile"
68+
run: "pnpm install --frozen-lockfile --filter element-desktop"
6969

7070
- name: Fetch Element Web (from artifact)
7171
if: inputs.webapp-artifact != ''

.github/workflows/build_desktop_test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ jobs:
4848
cache: "pnpm"
4949

5050
- name: Install Deps
51-
working-directory: apps/desktop
52-
run: "pnpm install --frozen-lockfile"
51+
run: "pnpm install --frozen-lockfile --filter element-desktop"
5352

5453
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
5554
with:
@@ -87,8 +86,9 @@ jobs:
8786
- name: Run tests
8887
timeout-minutes: 20
8988
shell: bash
89+
working-directory: apps/desktop
9090
run: |
91-
$PREFIX pnpm -C apps/desktop test \
91+
$PREFIX pnpm playwright test \
9292
${{ runner.os != 'Linux' && '--ignore-snapshots' || '' }} \
9393
${{ inputs.blob_report == false && '--reporter=html' || '' }} \
9494
$ARGS

.github/workflows/build_desktop_windows.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160

161161
- name: Install Deps
162162
working-directory: apps/desktop
163-
run: "pnpm install --frozen-lockfile"
163+
run: "pnpm install --frozen-lockfile --filter element-desktop"
164164

165165
- name: Insert config snippet
166166
if: steps.config.outputs.extra_config != ''

0 commit comments

Comments
 (0)