forked from DevExpress/testcafe
-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (66 loc) · 2.07 KB
/
test-client.yml
File metadata and controls
76 lines (66 loc) · 2.07 KB
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
name: Test Client
on:
workflow_call:
inputs:
test-script:
required: true
type: string
browsers:
required: true
type: string
jobs:
test:
runs-on: ubuntu-latest
name: ${{ matrix.browser }}
continue-on-error: true
strategy:
matrix:
browser: ${{ fromJSON(inputs.browsers) }}
environment: test-client
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
CLIENT_TESTS_CURRENT_BROWSER: ${{ matrix.browser }}
steps:
- uses: DevExpress/testcafe-build-system/actions/set-status@main
with:
status: 'pending'
- uses: actions/checkout@v3
with:
ref: ${{github.event.inputs.merged_sha || github.event.inputs.sha}}
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: DevExpress/testcafe-build-system/actions/read-artifacts@main
with:
package-name: 'testcafe'
- name: Get npm cache directory
id: npm-cache-dir
run: |
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: ${{ inputs.test-script }}
timeout-minutes: 60
- uses: DevExpress/testcafe-build-system/actions/save-matrix-status@main
if: always()
with:
job-id: ${{ matrix.browser }}
set-result-status:
if: always()
needs: test
runs-on: ubuntu-latest
steps:
- uses: DevExpress/testcafe-build-system/actions/read-matrix-status@main
id: matrix-status
- uses: DevExpress/testcafe-build-system/actions/set-status@main
with:
status: ${{ steps.matrix-status.outputs.status }}
- name: Exit with error
if: ${{ steps.matrix-status.outputs.status != 'success' }}
run: exit 1