/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
.github/actions/run-api-tests/action.yml
19 строк
462 B
Boegie19
add jest shards for db tests.
10 окт 2023, 15:06
10 окт 2023, 15:06
82d97ce
Код
Авторство
О чём код?
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