Skip to content

Commit 98f1d48

Browse files
committed
fix(ci): correct workspace paths in E2E workflow filters
The e2e-android-test.yml and e2e-ios-test.yml workflows referenced 'cpp/**', 'nitrogen/**', and 'src/**' at repo root — directories that no longer exist after the workspace migration to 'packages/react-native-quick-crypto/'. Result: every C++-only PR silently skipped both E2E suites (PR #982 Phase 0, PR #983 Phase 1, and PR #984 Phase 2 all hit this). Updates both pull_request and push path filters to point at the workspace locations. Each workflow file is itself in its own paths filter, so this commit triggers the workflows on PR #984 to run for the first time on this branch's C++ changes.
1 parent 47b1d48 commit 98f1d48

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/e2e-android-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ on:
1010
paths:
1111
- '.github/workflows/e2e-android-test.yml'
1212
- 'example/**'
13-
- 'cpp/**'
14-
- 'nitrogen/**'
15-
- 'src/**'
13+
- 'packages/react-native-quick-crypto/cpp/**'
14+
- 'packages/react-native-quick-crypto/nitrogen/**'
15+
- 'packages/react-native-quick-crypto/src/**'
1616
- 'packages/react-native-quick-crypto/android/**'
1717
push:
1818
branches: [main]
1919
paths:
2020
- 'example/**'
21-
- 'cpp/**'
22-
- 'nitrogen/**'
23-
- 'src/**'
21+
- 'packages/react-native-quick-crypto/cpp/**'
22+
- 'packages/react-native-quick-crypto/nitrogen/**'
23+
- 'packages/react-native-quick-crypto/src/**'
2424
- 'packages/react-native-quick-crypto/android/**'
2525

2626
env:

.github/workflows/e2e-ios-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ on:
1010
paths:
1111
- '.github/workflows/e2e-ios-test.yml'
1212
- 'example/**'
13-
- 'cpp/**'
14-
- 'nitrogen/**'
15-
- 'src/**'
13+
- 'packages/react-native-quick-crypto/cpp/**'
14+
- 'packages/react-native-quick-crypto/nitrogen/**'
15+
- 'packages/react-native-quick-crypto/src/**'
1616
- 'packages/react-native-quick-crypto/ios/**'
1717
push:
1818
branches: [main]
1919
paths:
2020
- 'example/**'
21-
- 'cpp/**'
22-
- 'nitrogen/**'
23-
- 'src/**'
21+
- 'packages/react-native-quick-crypto/cpp/**'
22+
- 'packages/react-native-quick-crypto/nitrogen/**'
23+
- 'packages/react-native-quick-crypto/src/**'
2424
- 'packages/react-native-quick-crypto/ios/**'
2525

2626
jobs:

0 commit comments

Comments
 (0)