Skip to content

Commit 5b65a5b

Browse files
committed
simplify pw matrix
1 parent b45484f commit 5b65a5b

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
@@ -538,26 +538,13 @@ jobs:
538538
tracing_only:
539539
- true
540540
- false
541-
replay:
542-
- true
543-
- false
544541
exclude:
545542
# `tracing_only` only makes a difference for bundles - tests of the esm and cjs builds always include the
546543
# tracing tests
547544
- bundle: esm
548545
tracing_only: false
549546
- bundle: cjs
550547
tracing_only: false
551-
# `replay` only makes a difference for bundles - tests of the esm and cjs builds always include replay
552-
- bundle: esm
553-
replay: false
554-
- bundle: cjs
555-
replay: false
556-
# Replay is es6-only, so we can't and don't need to test agains ES5 bundles.
557-
- bundle: bundle_es5
558-
replay: true
559-
- bundle: bundle_es5_min
560-
replay: true
561548
steps:
562549
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
563550
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)