Skip to content

Commit 7a5bec1

Browse files
committed
ci: add Appium related dependencies setup
1 parent f157b59 commit 7a5bec1

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/RunE2eTests.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,23 @@ jobs:
2020
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: 9.0.x
23+
24+
- name: Setup Node.js (required for Appium)
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: 22.16.x
28+
29+
- name: Setup Appium Server
30+
run: npm install -g appium
31+
32+
- name: Setup Appium Windows Driver
33+
run: appium driver install windows
34+
2335
- name: Restore dependencies
2436
run: dotnet restore
37+
2538
- name: Build
2639
run: dotnet build --no-restore
40+
2741
- name: Test
2842
run: dotnet test --no-build --verbosity normal --filter "FullyQualifiedName~e2e"

0 commit comments

Comments
 (0)