The Background is supposed to set the context that is common to all the scenarios of the feature. Thus, it should only contain Given steps.

Noncompliant Code Example

Background:
  Given I am a customer
  And I am on the catalog page
  When I add a product to my cart    # Noncompliant

Compliant Solution

Background:
  Given I am a customer
  And I am on the catalog page