Skip to content

Commit e64b648

Browse files
authored
ci: capture variant failure outputs as artifacts (#626)
Might as well do this
1 parent cb75669 commit e64b648

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,3 +196,11 @@ jobs:
196196
PGPASSWORD: postgres
197197
PGHOST: localhost
198198
run: ./ci/bin/build-and-test
199+
- uses: actions/upload-artifact@v4
200+
if: success() || failure()
201+
with:
202+
name: ${{ matrix.variant.name }}-demo-rspec-output-results
203+
path: |
204+
tmp/builds/${{ matrix.variant.name }}-demo/tmp/capybara
205+
tmp/builds/${{ matrix.variant.name }}-demo/tmp/screenshots
206+
tmp/builds/${{ matrix.variant.name }}-demo/tmp/lighthouse

0 commit comments

Comments
 (0)