Skip to content

Commit

Permalink
fix(CI): prevent the e2e test from running on 0.71 (#35681)
Browse files Browse the repository at this point in the history
  • Loading branch information
kelset committed Jan 6, 2023
1 parent 6ece074 commit 22f920f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -533,8 +533,17 @@ jobs:
- run:
name: "Run Tests: JavaScript Tests"
command: node ./scripts/run-ci-javascript-tests.js --maxWorkers 2
- run_e2e:
platform: js

# When not in 0.XX-stable branch, run e2e tests
- when:
condition:
not:
matches:
pattern: "0.[0-9]{2}-stable"
value: << pipeline.git.branch >>
steps:
- run_e2e:
platform: js

# Optionally, run disabled tests
- when:
Expand Down

0 comments on commit 22f920f

Please sign in to comment.