Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion script/ci-changes-detector
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ if [ "$SPEC_DUMMY_CHANGED" = true ] || [ "$RUBY_CORE_CHANGED" = true ] || [ "$JS
RUN_DUMMY_TESTS=true
fi

if [ "$GENERATORS_CHANGED" = true ]; then
# JS changes trigger generator tests because generators do a full build
# which catches TypeScript compilation errors (see issue #2205)
if [ "$GENERATORS_CHANGED" = true ] || [ "$JS_CHANGED" = true ]; then
RUN_GENERATORS=true
fi

Expand Down
Loading