You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
413 B

name: 'Run e2e tests'
description: 'Run e2e tests'
inputs:
runEE:
description: 'Should run EE or CE e2e tests'
jestOptions:
description: 'Jest options'
runs:
using: 'composite'
steps:
- run: $GITHUB_ACTION_PATH/script.sh
env:
RUN_EE: ${{ inputs.runEE }}
JEST_OPTIONS: ${{ inputs.jestOptions }}
STRAPI_FEATURES_UNSTABLE_PREVIEW_SIDE_EDITOR: true
shell: bash