Skip to content

SANDBOX - Smoke Test #99

SANDBOX - Smoke Test

SANDBOX - Smoke Test #99

Workflow file for this run

# .github/workflows/terraform-dev
name: 'SANDBOX - Smoke Test'
on:
workflow_dispatch:
inputs:
build_branch:
description: 'Branch with smoke tests.'
required: true
type: 'string'
default: 'main'
environment:
description: 'Which Environment type are we using'
required: true
type: 'string'
default: 'development'
sandbox:
description: 'Sandbox to run the smoke tests on.'
required: true
type: 'string'
default: 'ndr'
permissions:
pull-requests: write
id-token: write # This is required for requesting the JWT
contents: read # This is required for actions/checkout
jobs:
smoketest:
uses: ./.github/workflows/base-cypress-smoketest.yml
with:
build_branch: ${{github.event.inputs.build_branch}}
environment: ${{github.event.inputs.environment}}
sandbox: ${{github.event.inputs.sandbox}}
secrets:
AWS_ASSUME_ROLE: ${{ secrets.AWS_ASSUME_ROLE }}
CYPRESS_USERNAME: ${{ secrets.CYPRESS_USERNAME }}
CYPRESS_PASSWORD: ${{ secrets.CYPRESS_PASSWORD }}