-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
43 lines (43 loc) · 1.03 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
40
41
42
43
name: Love Test Reporter
description: |
basic github action to dump report output for love-test
author: ellraiser <[email protected]>
inputs:
name:
description: Name for the report
required: true
title:
description: Title to show in the jobs summary
required: true
path:
description: |
Path to the love-test exported md file
required: true
token:
description: GitHub Access Token
required: false
default: ${{ github.token }}
event_name:
description: Event Type
required: false
default: ${{ github.event_name }}
outputs:
conclusion:
description: |
Final conclusion of the created check run:
- 'success' if no failed tests was found
- 'failure' if any failed test was found
passed:
description: Count of passed tests
failed:
description: Count of failed tests
skipped:
description: Count of skipped tests
time:
description: Test execution time [ms]
runs:
using: 'node20'
main: 'index.js'
branding:
color: blue
icon: file-text