Skip to content

Test Runner

Test Runner #6

Workflow file for this run

name: "Test Runner"
on:
workflow_dispatch:
inputs:
bcss_cloud_environment:
description: "The environment to run against in lower case (e.g. bcss-1234)"
required: true
type: string
default: "bcss-18680"
marker_to_use:
description: "The test marker to use when running tests (e.g. smokescreen)"
required: true
type: string
jobs:
run-tests:
name: "Run Specified Tests"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "Checkout code"
uses: actions/checkout@v4
- name: "Run Tests"
id: run-tests
uses: ./.github/actions/run-playwright-tests
with:
bcss_cloud_environment: "${{ inputs.bcss_cloud_environment }}"
marker_to_use: "${{ inputs.marker_to_use }}"
env:
BCSS_PASS: ${{ secrets.BCSS_PASS }}
ORACLE_DB_DEFAULT: ${{ secrets.ORACLE_DB }}
ORACLE_USERNAME: ${{ secrets.ORACLE_USERNAME }}
ORACLE_PASS: ${{ secrets.ORACLE_PASS }}
URL_TO_USE_DEFAULT: ${{ vars.CLOUD_ENV_URL }}