File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -161,6 +161,18 @@ jobs:
161
161
- name : Run Storybook visual tests
162
162
if : env.APPLITOOLS_API_KEY
163
163
run : npm run test:storybook -- --storybook-url http://localhost:3000/storybook/index.html
164
+ - name : Prepare Playwright artifact directory
165
+ if : always()
166
+ run : |
167
+ mkdir -p playwright-artifact
168
+ if [ -d test-results ]; then cp -r test-results/* playwright-artifact/; fi
169
+ if [ -d playwright-report ]; then cp -r playwright-report/* playwright-artifact/; fi
170
+ - name : Upload Playwright Storybook artifact
171
+ if : always()
172
+ uses : actions/upload-artifact@v4
173
+ with :
174
+ name : playwright-storybook
175
+ path : playwright-artifact
164
176
- name : Upload Storybook logs if exists
165
177
if : always()
166
178
uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments