generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
39 lines (37 loc) · 1.26 KB
/
action.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
name: 'apptestai-test'
description: 'github action for apptest.ai test execution'
author: 'Jae-cheol Kim <forcemax@gmail.com>'
inputs:
access_key:
description: 'apptest.ai access key'
required: true
project_id:
description: 'apptest.ai project id'
required: true
binary_path:
description: 'package file'
required: true
testset_name:
description: 'test set name (default: github commit message).'
required: false
time_limit:
description: 'Test time limit (minutes) (range: 5 - 30). If the value is empty, it follows the time-limit saved in the project.'
required: false
use_vo:
description: 'Whether AT&T Video Optimizer(ARO) is used. (true|false) (default: false)'
required: false
callback:
description: 'Callback URL to be called after test completion.'
required: false
login_id:
description: 'ID of the test account required to test the app. If the value is empty, it follows the time-limit saved in the project.'
required: false
login_pw:
description: 'Password of the test account required to test the app. If the value is empty, it follows the time-limit saved in the project.'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'anchor'
color: 'orange'