Skip to content

Commit 822df1c

Browse files
author
Mohammod Al Amin Ashik
committed
rename ci
1 parent 4a4245f commit 822df1c

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,11 @@ jobs:
243243
retention-days: 7
244244

245245
# ─────────────────────────────────────────────────────────────
246-
# E2E Tests (Full Tauri with WebDriver - Linux/Windows only)
246+
# E2E Tests (Desktop app with WebDriver - Linux/Windows only)
247247
# macOS not supported: no WKWebView driver
248248
# Only runs on main branch or when [e2e] in commit message
249249
# ─────────────────────────────────────────────────────────────
250-
e2e-tauri:
250+
e2e-desktop:
251251
needs: [build]
252252
# Run on main, or when explicitly requested with [e2e] tag
253253
if: github.ref == 'refs/heads/main' || contains(github.event.head_commit.message, '[e2e]')
@@ -287,7 +287,7 @@ jobs:
287287

288288
- uses: Swatinem/rust-cache@v2
289289
with:
290-
key: ${{ matrix.os }}-e2e
290+
key: ${{ matrix.os }}-e2e-desktop
291291
env:
292292
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
293293

@@ -313,10 +313,10 @@ jobs:
313313
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
314314
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
315315

316-
- name: Run Tauri E2E tests (Linux)
316+
- name: Run desktop E2E tests (Linux)
317317
if: matrix.os == 'ubuntu-latest'
318318
run: xvfb-run --auto-servernum pnpm test:e2e
319319

320-
- name: Run Tauri E2E tests (Windows)
320+
- name: Run desktop E2E tests (Windows)
321321
if: matrix.os == 'windows-latest'
322322
run: pnpm test:e2e
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Run Tauri E2E tests when someone comments /e2e-tauri on a PR.
2-
# Usage: Add a comment "/e2e-tauri" on any PR to trigger desktop E2E tests.
1+
# Run desktop app E2E tests when someone comments /e2e-desktop on a PR.
2+
# Usage: Add a comment "/e2e-desktop" on any PR to trigger desktop E2E tests.
33

4-
name: E2E Tauri (Comment Trigger)
4+
name: E2E Desktop (Comment Trigger)
55

66
on:
77
issue_comment:
@@ -11,11 +11,11 @@ env:
1111
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
1212

1313
jobs:
14-
e2e-tauri:
15-
# Only run when comment on a PR contains /e2e-tauri
14+
e2e-desktop:
15+
# Only run when comment on a PR contains /e2e-desktop
1616
if: |
1717
github.event.issue.pull_request != null &&
18-
contains(github.event.comment.body, '/e2e-tauri')
18+
contains(github.event.comment.body, '/e2e-desktop')
1919
strategy:
2020
fail-fast: false
2121
matrix:
@@ -64,7 +64,7 @@ jobs:
6464

6565
- uses: Swatinem/rust-cache@v2
6666
with:
67-
key: ${{ matrix.os }}-e2e-comment
67+
key: ${{ matrix.os }}-e2e-desktop-comment
6868
env:
6969
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
7070

@@ -95,10 +95,10 @@ jobs:
9595
PKG_CONFIG_PATH: /usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
9696
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
9797

98-
- name: Run Tauri E2E tests (Linux)
98+
- name: Run desktop E2E tests (Linux)
9999
if: matrix.os == 'ubuntu-latest'
100100
run: xvfb-run --auto-servernum pnpm test:e2e
101101

102-
- name: Run Tauri E2E tests (Windows)
102+
- name: Run desktop E2E tests (Windows)
103103
if: matrix.os == 'windows-latest'
104104
run: pnpm test:e2e

0 commit comments

Comments
 (0)