Skip to content

Commit 4f53323

Browse files
committed
simplify pw matrix
1 parent a5bb238 commit 4f53323

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -537,26 +537,13 @@ jobs:
537537
tracing_only:
538538
- true
539539
- false
540-
replay:
541-
- true
542-
- false
543540
exclude:
544541
# `tracing_only` only makes a difference for bundles - tests of the esm and cjs builds always include the
545542
# tracing tests
546543
- bundle: esm
547544
tracing_only: false
548545
- bundle: cjs
549546
tracing_only: false
550-
# `replay` only makes a difference for bundles - tests of the esm and cjs builds always include replay
551-
- bundle: esm
552-
replay: false
553-
- bundle: cjs
554-
replay: false
555-
# Replay is es6-only, so we can't and don't need to test agains ES5 bundles.
556-
- bundle: bundle_es5
557-
replay: true
558-
- bundle: bundle_es5_min
559-
replay: true
560547
steps:
561548
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
562549
uses: actions/checkout@v3

packages/integration-tests/utils/generatePlugin.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import type { Compiler } from 'webpack';
77
const PACKAGES_DIR = '../../packages';
88

99
const tracingOnly = process.env.PW_TRACING_ONLY === 'true';
10-
const useReplay = process.env.PW_REPLAY === 'true';
1110

1211
const bundleKey = process.env.PW_BUNDLE;
1312

@@ -38,7 +37,6 @@ const BUNDLE_PATHS: Record<string, Record<string, string>> = {
3837
bundle_replay_es6: 'build/bundles/bundle.tracing.replay.js',
3938
bundle_replay_es6_min: 'build/bundles/bundle.tracing.replay.min.js',
4039
},
41-
errorsAndReplay: {},
4240
integrations: {
4341
cjs: 'build/npm/cjs/index.js',
4442
esm: 'build/npm/esm/index.js',

0 commit comments

Comments
 (0)