-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (34 loc) · 928 Bytes
/
action.yml
File metadata and controls
34 lines (34 loc) · 928 Bytes
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
# action.yml
name: 'Testim CLI'
description: 'Run tests on Testim.io'
inputs:
token: # id of input
description: 'Testim auth token'
required: true
project:
description: 'Project ID'
required: true
grid:
description: 'Grid to run the tests on'
required: false
default: "Testim-Grid"
suite:
description: 'The test suite to execute'
required: false
base-url:
description: 'The URL of the app to test'
required: false
retries:
description: 'When this flag is used, a failed test will be executed repeatedly until either the test passes or the max number of retries has been reached - in which case the test will fail'
required: false
default: '1'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.token }}
- ${{ inputs.project }}
- ${{ inputs.grid }}
- ${{ inputs.base-url }}
- ${{ inputs.retries }}
- ${{ inputs.suite }}