Skip to content

Commit bbd4b38

Browse files
author
Luca Forstner
committed
Don't run certain things twice and also upload for canary tests
1 parent f32bc72 commit bbd4b38

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,10 +1088,6 @@ jobs:
10881088
'react-send-to-sentry',
10891089
'node-express-send-to-sentry',
10901090
'debug-id-sourcemaps',
1091-
'nextjs-app-dir',
1092-
'nextjs-13',
1093-
'nextjs-14',
1094-
'nextjs-15',
10951091
]
10961092
build-command:
10971093
- false
@@ -1189,6 +1185,20 @@ jobs:
11891185
timeout-minutes: 10
11901186
run: pnpm ${{ matrix.assert-command || 'test:assert' }}
11911187

1188+
- name: Pre-process E2E Test Dumps
1189+
run: |
1190+
node ./scripts/normalize-e2e-test-dump-transaction-events.js
1191+
1192+
- name: Upload E2E Test Event Dumps
1193+
uses: actions/upload-artifact@v4
1194+
if: always()
1195+
with:
1196+
name: E2E Test Dump (${{ matrix.label || matrix.test-application }})
1197+
path: dev-packages/e2e-tests/test-applications/${{ matrix.test-application }}/event-dumps
1198+
overwrite: true
1199+
retention-days: 7
1200+
if-no-files-found: ignore
1201+
11921202
- name: Deploy Astro to Cloudflare
11931203
uses: cloudflare/pages-action@v1
11941204
if: matrix.test-application == 'cloudflare-astro'

0 commit comments

Comments
 (0)