Cypress Tests using Cypress Docker Image #7
Workflow file for this run
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: Cypress Tests using Cypress Docker Image | |
on: | |
workflow_call: | |
inputs: | |
environment: | |
required: true | |
type: string | |
secrets: | |
AZURE_ENDPOINT: | |
required: true | |
CYPRESS_TEST_SECRET: | |
required: true | |
CYPRESS_ACADEMISATION_API_URL: | |
required: true | |
CYPRESS_ACADEMISATION_API_KEY: | |
required: true | |
DB_CONNECTION_STRING: | |
required: true | |
SLACK_WEBHOOK_URL: | |
required: true | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: 'Environment to run tests against' | |
required: true | |
type: environment | |
concurrency: | |
group: ${{ github.workflow }} | |
jobs: | |
cypress-tests: | |
name: Run Cypress Tests | |
runs-on: ubuntu-latest | |
environment: ${{ inputs.environment }} | |
strategy: | |
matrix: | |
browser: [ | |
"edge" | |
] | |
container: | |
image: cypress/browsers:22.12.0 | |
defaults: | |
run: | |
working-directory: Dfe.PrepareConversions/Dfe.PrepareConversions.CypressTests | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.ref }} | |
- name: Cypress run (dev) | |
if: inputs.environment == 'dev' | |
uses: cypress-io/github-action@v6 | |
env: | |
db: ${{ secrets.DB_CONNECTION_STRING }} | |
with: | |
start: npm run cy:run -- --env url='${{ secrets.AZURE_ENDPOINT }}',cypressTestSecret='${{ secrets.CYPRESS_TEST_SECRET }}, academisationApiUrl=${{secrets.CYPRESS_ACADEMISATION_API_URL}}, academisationApiKey=${{ secrets.CYPRESS_ACADEMISATION_API_KEY}}' | |
browser: ${{ matrix.browser }} | |
- name: Run cypress (staging) | |
if: inputs.environment == 'staging' | |
uses: cypress-io/github-action@v6 | |
env: | |
db: ${{ secrets.DB_CONNECTION_STRING }} | |
with: | |
start: npm run cy:run -- --env url='${{ secrets.AZURE_ENDPOINT }}',grep='-dao',cypressTestSecret='${{ secrets.CYPRESS_TEST_SECRET }}, academisationApiUrl=${{secrets.CYPRESS_ACADEMISATION_API_URL}}, academisationApiKey=${{ secrets.CYPRESS_ACADEMISATION_API_KEY}}' | |
browser: ${{ matrix.browser }} | |
- name: Upload screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: screenshots-dev | |
path: Dfe.PrepareConversions/Dfe.PrepareConversions.CypressTests/cypress/screenshots | |
- name: Generate report | |
if: always() | |
run: | | |
mkdir mochareports | |
npm run generate:html:report | |
- name: Upload report | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: reports-dev | |
path: Dfe.PrepareConversions/Dfe.PrepareConversions.CypressTests/mochareports | |
- name: Report results | |
if: always() | |
run: npm run cy:notify -- --custom-text="Environment ${{ inputs.environment }}, See more information https://github.com/DFE-Digital/prepare-academy-conversions/actions/runs/${{github.run_id}}" | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |