We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02e9fe commit 82f096dCopy full SHA for 82f096d
1 file changed
.github/workflows/ci.yml
@@ -5,6 +5,8 @@ on:
5
pull_request:
6
branches: [master, beta]
7
workflow_dispatch:
8
+env:
9
+ RUN_E2E: "false"
10
jobs:
11
cancel_previous:
12
runs-on: ubuntu-latest
@@ -31,6 +33,7 @@ jobs:
31
33
run: devbox run build
32
34
35
run-e2e-ios:
36
+ if: ${{ env.RUN_E2E == 'true' }}
37
continue-on-error: true
38
runs-on: ['macos-15' ]
39
env:
@@ -87,6 +90,7 @@ jobs:
87
90
devbox shell --omit-nix-env --command "devbox run test-ios"
88
91
89
92
run-e2e-android:
93
94
95
runs-on: 'ubuntu-22.04'
96
strategy:
0 commit comments