Skip to content

Commit 2f96dd6

Browse files
authored
chore(Internal): 🔖 new release candidate (#342)
2 parents 840b25d + d77dce4 commit 2f96dd6

File tree

115 files changed

+3871
-1987
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+3871
-1987
lines changed

.github/workflows/bs-app-upload.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,15 @@ jobs:
2626
username: ${{ env.BS_USER }}
2727
password: ${{ env.BS_KEY }}
2828
data: '{ "custom_id": "AndroidApp" }'
29-
files: '{ "file": "${{ github.workspace }}/core-java/src/test/resources/apps/android/saucedemo.apk" }'
29+
files: '{ "file": "${{ github.workspace }}/core-java/src/test/resources/apps/android/sauce-demo.apk" }'
30+
31+
- name: Upload iOS App
32+
id: ios_app_upload
33+
uses: fjogeleit/http-request-action@v1
34+
with:
35+
url: https://api-cloud.browserstack.com/app-automate/upload
36+
method: POST
37+
username: ${{ env.BS_USER }}
38+
password: ${{ env.BS_KEY }}
39+
data: '{ "custom_id": "IOSApp" }'
40+
files: '{ "file": "${{ github.workspace }}/core-java/src/test/resources/apps/ios/sauce-demo.ipa" }'

.github/workflows/test-core.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ jobs:
5454
BS_KEY: ${{ secrets.BS_KEY }}
5555
LT_USER: ${{ secrets.LT_USER }}
5656
LT_KEY: ${{ secrets.LT_KEY }}
57-
BS_APP_ANDROID: ${{ secrets.BS_APP_ANDROID }}
5857
LT_APP_ANDROID: ${{ secrets.LT_APP_ANDROID }}
58+
LT_APP_IOS: ${{ secrets.LT_APP_IOS }}
5959
steps:
6060
- name: Check out Git repository
6161
uses: actions/checkout@v3
@@ -82,15 +82,24 @@ jobs:
8282
run: |
8383
npm install -g appium@next
8484
appium driver install uiautomator2
85+
appium driver install xcuitest
8586
8687
- name: Start Selenium Grid
87-
run: java -jar core-java/libs/selenium-server-4.7.0.jar standalone > core-java/selenium-grid.log &
88+
run: java -jar core-java/libs/selenium-server-4.8.0.jar standalone > core-java/selenium-grid.log &
89+
90+
- name: Launch iOS Simulator
91+
uses: futureware-tech/simulator-action@v2
92+
with:
93+
model: 'iPhone 14 Pro Max'
94+
os: 'iOS'
95+
os_version: 16.2
96+
shutdown_after_job: true
8897

8998
- name: All Test execution
9099
uses: reactivecircus/android-emulator-runner@v2
91100
if: github.event_name == 'push'
92101
with:
93-
avd-name: Nexus_6
102+
avd-name: Pixel_6_Pro
94103
api-level: 30
95104
target: google_apis
96105
arch: x86
@@ -104,7 +113,7 @@ jobs:
104113
uses: reactivecircus/android-emulator-runner@v2
105114
if: github.event_name == 'pull_request'
106115
with:
107-
avd-name: Nexus_6
116+
avd-name: Pixel_6_Pro
108117
api-level: 30
109118
target: google_apis
110119
arch: x86
@@ -128,6 +137,7 @@ jobs:
128137
${{ github.workspace }}/core-java/selenium-grid.log
129138
${{ github.workspace }}/core-java/target
130139
${{ github.workspace }}/core-java/reports
140+
${{ github.workspace }}/core-java/screenshots
131141
132142
analysis:
133143
if: github.event_name == 'push'

.github/workflows/test-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
echo "version=$MVN_VERSION" >> $GITHUB_OUTPUT
4646
4747
- name: Start Selenium Grid
48-
run: java -jar core-java/libs/selenium-server-4.7.0.jar standalone > sample-tests/selenium-grid.log &
48+
run: java -jar core-java/libs/selenium-server-4.8.0.jar standalone > sample-tests/selenium-grid.log &
4949

5050
- name: All Test execution
5151
run: mvn clean test -f sample-tests/pom.xml -Dboyka.version=${{ steps.version.outputs.version }}
@@ -68,3 +68,4 @@ jobs:
6868
${{ github.workspace }}/sample-tests/selenium-grid.log
6969
${{ github.workspace }}/sample-tests/target
7070
${{ github.workspace }}/sample-tests/reports
71+
${{ github.workspace }}/sample-java/screenshots

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v16.18.1
1+
v16.19.0

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ website/build
55
/core-java
66
.pnp.*
77
*.md*
8+
*.xml

.yarn/sdks/eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint",
3-
"version": "8.30.0-sdk",
3+
"version": "8.32.0-sdk",
44
"main": "./lib/api.js",
55
"type": "commonjs"
66
}

.yarn/sdks/prettier/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier",
3-
"version": "2.8.1-sdk",
3+
"version": "2.8.3-sdk",
44
"main": "./index.js",
55
"type": "commonjs"
66
}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
## v0.11.0-rc.0 (2023-01-02)
2+
## v0.11.0 (2023-01-02)
33

44
#### :rocket: New Feature
55
* [#243](https://github.com/BoykaFramework/boyka-framework/pull/243) feat(java): :sparkles: added finger gestures for android ([@WasiqB](https://github.com/WasiqB))

0 commit comments

Comments
 (0)