@@ -24,8 +24,12 @@ inputs:
24
24
description : Token to login for sourcery test
25
25
required : true
26
26
trunk-token :
27
- description : CI debugger api token
27
+ description : CI debugger api token (org token)
28
28
required : true
29
+ ref-type :
30
+ description : release or main
31
+ required : false
32
+ default : main
29
33
30
34
runs :
31
35
# TODO(Tyler): See if this can be converted to a js action
91
95
PLUGINS_TEST_CLI_PATH : ${{ env.CLI_PATH }}
92
96
SOURCERY_TOKEN : ${{ inputs.sourcery-token }}
93
97
# Debug recurrent eslint circular JSON errors
94
- DEBUG : Driver:eslint:*,Driver:cspell:*,Driver:nixpkgs-fmt:*
98
+ DEBUG : Driver:eslint:*,Driver:nixpkgs-fmt:*
99
+ JEST_SUITE_NAME : Linter Tests
100
+ JEST_JUNIT_SUITE_NAME :
101
+ " {title} ${{ runner.os }} ${{ inputs.ref-type }} ${{ inputs.linter-version }}"
95
102
96
103
- name : Run plugin tests
97
104
if : runner.os != 'Windows'
@@ -101,7 +108,7 @@ runs:
101
108
breakpoint-id : trunk-plugins-linter-tests
102
109
shell : bash
103
110
working-directory : ${{ inputs.path }}
104
- trunk-token : ${{ inputs.trunk-token }}
111
+ trunk-token : ${{ inputs.trunk-token }}
105
112
org : trunk-staging-org
106
113
run : npm test ${{ inputs.append-args }} ${{ env.PLATFORM_APPEND_ARGS }} --ci --runInBand
107
114
env :
@@ -110,3 +117,18 @@ runs:
110
117
PLUGINS_TEST_CLI_PATH : ${{ env.CLI_PATH }}
111
118
SOURCERY_TOKEN : ${{ inputs.sourcery-token }}
112
119
DEBUG : Driver:nixpkgs-fmt:*, Driver:eslint:*
120
+ JEST_SUITE_NAME : Linter Tests
121
+ JEST_JUNIT_SUITE_NAME :
122
+ " {title} ${{ runner.os }} ${{ inputs.ref-type }} ${{ inputs.linter-version }}"
123
+
124
+ - name : Upload results
125
+ # TODO(Tyler): Add upload on MacOS/Windows once the action supports it.
126
+ if : " !cancelled() && runner.os == 'Linux'"
127
+ uses : trunk-io/analytics-uploader@main
128
+ with :
129
+ junit-paths : junit.xml
130
+ org-slug : trunk-staging-org
131
+ token : ${{ inputs.trunk-token }}
132
+ continue-on-error : true
133
+ env :
134
+ TRUNK_PUBLIC_API_ADDRESS : https://api.trunk-staging.io
0 commit comments