File tree Expand file tree Collapse file tree
.github/actions/appium-e2e Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ inputs:
2828 required : false
2929 default : ' tests/specs/**/*.spec.ts'
3030 onesignal-app-id :
31- description : ' OneSignal App ID dedicated to E2E tests'
31+ description : ' OneSignal App ID for E2E tests (org var: APPIUM_ONESIGNAL_APP_ID) '
3232 required : false
3333 onesignal-api-key :
34- description : ' OneSignal API key dedicated to E2E tests'
34+ description : ' OneSignal API key for E2E tests (org secret: APPIUM_ONESIGNAL_API_KEY) '
3535 required : false
3636 build-name :
3737 description : ' Label for the BrowserStack session'
Original file line number Diff line number Diff line change 11type SdkType =
2- | "react-native"
3- | "flutter"
2+ | "android"
43 | "capacitor"
5- | "unity"
64 | "cordova"
75 | "dotnet"
6+ | "flutter"
87 | "ios"
9- | "android" ;
8+ | "react-native"
9+ | "unity" ;
1010
1111const VALID_SDK_TYPES = new Set < string > ( [
12- "react-native" ,
13- "flutter" ,
12+ "android" ,
1413 "capacitor" ,
15- "unity" ,
1614 "cordova" ,
1715 "dotnet" ,
16+ "flutter" ,
1817 "ios" ,
19- "android" ,
18+ "react-native" ,
19+ "unity" ,
2020] ) ;
2121
2222type Platform = "ios" | "android" ;
You can’t perform that action at this time.
0 commit comments