How to run multiple scenarios sequentially

Hello guys, I have one problem with Gatling. I want to run this scenarios sequentially:

def GetMeScenarios(): List[ScenarioBuilder] = List[ScenarioBuilder](
  HealthCheckScn(),
  StandardsCachingScn(),
  ValidateScoringEvents(),
  EndToEndScn(),
  DomainLevelAggregationsScn(),
  ValidateStandardLevelAggregation(),
  DomainDescriptionAndStuProfPercentOrderingScn(),
  StandardsSortingAndPagination(),
  GroupingAssigmentScn()
)


And here is call of the method for running them:

@Stephane Landelle can you help me with this please