generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
34 lines (34 loc) · 910 Bytes
/
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
name: 'maestro-test-action'
description: 'Simple step to run Maestro tests with GitHub Actions'
author: 'dniHze'
inputs:
env:
required: false
description: 'Meastro environment variables, support'
default: ''
flow:
required: false
description: 'Meastro flow or directory'
report:
required: false
description: 'JUnit report destination'
default: 'maestro/reports/test.xml'
screenshots-dir:
required: false
description: 'Relative or absolute path to where screenshots should be stored'
default: 'maestro/screenshots'
version:
required: false
description: 'Maestro CLI version'
default: 'latest'
outputs:
report:
description: 'Absolute path to JUnit test report'
screenshots-dir:
description: 'Absolute path to maestro screenshots placements'
runs:
using: 'node16'
main: 'dist/index.js'
branding:
color: white
icon: check-circle