-
-
Notifications
You must be signed in to change notification settings - Fork 25
87 lines (82 loc) · 2.22 KB
/
unit-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Unit Tests
on:
pull_request:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
push:
branches: [ master ]
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
prepare_matrix:
runs-on: ubuntu-latest
outputs:
versions: ${{ steps.generate-matrix.outputs.active }}
steps:
- name: Select all active LTS versions of Node.js
id: generate-matrix
uses: msimerson/node-lts-versions@v1
test:
needs:
- prepare_matrix
strategy:
# TODO: remove after nodejs 22.5.1 is available
fail-fast: false
matrix:
node-version: ${{ fromJSON(needs.prepare_matrix.outputs.versions) }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
- run: npm install --no-package-lock
name: Install dev dependencies
- run: npm run lint
name: Run linter
- run: npm run test
name: Run unit tests
analyze_wda:
strategy:
matrix:
include:
- os: macos-13
xcode_version: 14.3.1
- os: macos-14
xcode_version: 15.4
- os: macos-15
xcode_version: 16.1
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode_version }}
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgentLib analyze
popd
name: Analyze WebDriverAgentLib
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgentRunner analyze
popd
name: Analyze WebDriverAgentRunner
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme IntegrationTests analyze
popd
name: Analyze IntegrationTests
- run: |
pushd "$(pwd)"
cd WebDriverAgentMac
xcodebuild -project "WebDriverAgentMac.xcodeproj" -scheme WebDriverAgent analyze
popd
name: Analyze WebDriverAgent