Skip to content

Commit 22f920f

Browse files
authored
fix(CI): prevent the e2e test from running on 0.71 (#35681)
1 parent 6ece074 commit 22f920f

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.circleci/config.yml

+11-2
Original file line numberDiff line numberDiff line change
@@ -533,8 +533,17 @@ jobs:
533533
- run:
534534
name: "Run Tests: JavaScript Tests"
535535
command: node ./scripts/run-ci-javascript-tests.js --maxWorkers 2
536-
- run_e2e:
537-
platform: js
536+
537+
# When not in 0.XX-stable branch, run e2e tests
538+
- when:
539+
condition:
540+
not:
541+
matches:
542+
pattern: "0.[0-9]{2}-stable"
543+
value: << pipeline.git.branch >>
544+
steps:
545+
- run_e2e:
546+
platform: js
538547

539548
# Optionally, run disabled tests
540549
- when:

0 commit comments

Comments
 (0)