We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efbad13 commit 6290547Copy full SHA for 6290547
.github/workflows/actions/test-angular-e2e/action.yml
@@ -40,3 +40,17 @@ runs:
40
run: npm run test
41
shell: bash
42
working-directory: ./packages/angular/test/build/${{ inputs.app }}
43
+ - name: Package Failing App for Debugging
44
+ if: failure()
45
+ run: |
46
+ cd ./packages/angular/test/build/${{ inputs.app }}
47
+ tar -czf failing-app-${{ inputs.app }}.tar.gz .
48
+ shell: bash
49
+ - name: Upload Failing App Artifact
50
51
+ uses: actions/upload-artifact@v4
52
+ with:
53
+ name: failing-app-${{ inputs.app }}
54
+ path: ./packages/angular/test/build/${{ inputs.app }}/failing-app-${{ inputs.app }}.tar.gz
55
+ retention-days: 7
56
+
0 commit comments