E2E Test Suite against by #3498
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E Test Suite | |
run-name: E2E ${{ inputs.suite }} Test Suite against ${{ inputs.ref_name }} by ${{ inputs.author }} | |
on: | |
schedule: | |
- cron: '0 */12 * * *' | |
workflow_dispatch: | |
inputs: | |
snjs_image_tag: | |
type: string | |
default: latest | |
description: The Docker image tag used for SNJS container | |
suite: | |
type: string | |
default: all | |
description: The test suite to run | |
author: | |
type: string | |
default: unknown | |
description: The author that triggered the workflow | |
ref_name: | |
type: string | |
default: unknown | |
description: The ref name from which the workflow was triggered | |
jobs: | |
e2e: | |
name: E2E | |
uses: standardnotes/server/.github/workflows/common-e2e.yml@main | |
with: | |
snjs_image_tag: ${{ inputs.snjs_image_tag || 'latest' }} | |
suite: ${{ inputs.suite || 'all' }} |