File tree 3 files changed +7
-12
lines changed
3 files changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -110,9 +110,11 @@ jobs:
110
110
111
111
steps :
112
112
- uses : actions/checkout@v3
113
+
113
114
- uses : actions/setup-node@v3
114
115
with :
115
116
node-version : ' latest'
117
+
116
118
- uses : actions/setup-java@v3
117
119
with :
118
120
distribution : ' temurin'
@@ -128,13 +130,6 @@ jobs:
128
130
HEADLESS : ${{ vars.HEADLESS }}
129
131
OUTPUT_PATH : ${{ vars.OUTPUT_PATH }}
130
132
131
- - uses : actions/upload-artifact@v3
132
- if : always()
133
- with :
134
- name : report-artifacts
135
- path : ${{ vars.OUTPUT_PATH }}
136
- retention-days : 30
137
-
138
133
- name : Generate Allure report
139
134
if : always()
140
135
run : npm run report:generate
@@ -147,7 +142,7 @@ jobs:
147
142
if : always()
148
143
uses : actions/configure-pages@v3
149
144
150
- - name : Upload GitHub Pages
145
+ - name : Upload GitHub Pages into an artifact
151
146
uses : actions/upload-pages-artifact@v2
152
147
if : always()
153
148
with :
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export const config: CodeceptJS.MainConfig = {
30
30
} ,
31
31
A11yHelper : {
32
32
require : 'codeceptjs-a11y-helper' ,
33
+ outputDir : `${ process . env . OUTPUT_PATH } /accessibility-audit` ,
33
34
} ,
34
35
} ,
35
36
include : {
@@ -58,7 +59,7 @@ export const config: CodeceptJS.MainConfig = {
58
59
allure : {
59
60
enabled : true ,
60
61
require : 'allure-codeceptjs' ,
61
- outputDir : `${ process . env . OUTPUT_PATH } /allure` ,
62
+ outputDir : `${ process . env . OUTPUT_PATH } /allure-raw ` ,
62
63
} ,
63
64
}
64
65
}
Original file line number Diff line number Diff line change 7
7
"test:chrome" : " npx codeceptjs run-workers 2 desktop:chromium" ,
8
8
"test:firefox" : " npx codeceptjs run-workers 2 desktop:firefox" ,
9
9
"test:safari" : " npx codeceptjs run-workers 2 desktop:webkit" ,
10
- "report:generate" : " allure generate ./output/allure -o ./output/allure-report --clean" ,
10
+ "report:generate" : " allure generate ./output/allure-raw -o ./output/allure-report --clean" ,
11
11
"report:patch" : " allure-patch ./output/allure-report" ,
12
- "report:open" : " allure open ./output/allure-report" ,
13
- "report:view" : " npx allure-commandline serve"
12
+ "report:open" : " allure open ./output/allure-report"
14
13
},
15
14
"keywords" : [
16
15
" qa" ,
You can’t perform that action at this time.
0 commit comments