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.

20 lines
462 B

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