We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef52f6c commit abeff06Copy full SHA for abeff06
.github/workflows/ci.yaml
@@ -350,11 +350,11 @@ jobs:
350
if: always()
351
uses: actions/upload-artifact@v2
352
with:
353
- name: test-videos
354
- path: ./test/e2e/videos
+ name: failed-test-videos
+ path: ./test/test-results
355
356
- name: Remove release packages and test artifacts
357
- run: rm -rf ./release-packages ./test/e2e/videos
+ run: rm -rf ./release-packages ./test/test-results
358
359
docker-amd64:
360
runs-on: ubuntu-latest
.gitignore
@@ -16,5 +16,5 @@ node-*
16
.home
17
coverage
18
**/.DS_Store
19
-test/e2e/videos
20
-test/e2e/screenshots
+# Failed e2e test videos are saved here
+test/test-results
0 commit comments