We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f157b59 commit 7a5bec1Copy full SHA for 7a5bec1
1 file changed
.github/workflows/RunE2eTests.yml
@@ -20,9 +20,23 @@ jobs:
20
uses: actions/setup-dotnet@v4
21
with:
22
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
35
- name: Restore dependencies
36
run: dotnet restore
37
38
- name: Build
39
run: dotnet build --no-restore
40
41
- name: Test
42
run: dotnet test --no-build --verbosity normal --filter "FullyQualifiedName~e2e"
0 commit comments