File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 54
54
55
55
test :
56
56
name : Test
57
+ env :
58
+ # junit test report used by test-summary/action to add test summary
59
+ CREATE_JUNIT_TEST_REPORT : true
57
60
needs : [lint]
58
61
runs-on : ${{ fromJSON(vars.RUNNER) }}
59
62
timeout-minutes : 15
72
75
cache-dependency-path : ' **/pnpm-lock.yaml'
73
76
- run : pnpm install --offline
74
77
- run : pnpm test
78
+ - name : Test Summary
79
+ if : always()
80
+ uses : test-summary/action@v2
81
+ with :
82
+ paths : " **/test-output/junit.xml"
Original file line number Diff line number Diff line change 2
2
* Copyright (c) HashiCorp, Inc.
3
3
* SPDX-License-Identifier: BUSL-1.1
4
4
*/
5
+ /* eslint-disable n/no-extraneous-require */
5
6
6
7
'use strict' ;
7
8
const MultiReporter = require ( 'testem-multi-reporter' ) ;
8
9
const JUnitReporter = require ( 'testem-gitlab-reporter' ) ;
9
10
const fs = require ( 'fs' ) ;
10
11
11
- // testem is provided by ember-cli and is not an explicit dependency
12
- // eslint-disable-next-line n/no-extraneous-require
13
12
const TAPReporter = require ( 'testem/lib/reporters/tap_reporter' ) ;
14
13
15
14
const multiReporterConfig = {
You can’t perform that action at this time.
0 commit comments