Skip to content

Commit

Permalink
Merge pull request #769 from DFE-Digital/patch/cypress-workflow
Browse files Browse the repository at this point in the history
Switch to using Cypress docker image for running tests
  • Loading branch information
DrizzlyOwl authored Dec 16, 2024
2 parents 7f1de3d + 0bd1b4d commit 8880b80
Showing 1 changed file with 25 additions and 19 deletions.
44 changes: 25 additions & 19 deletions .github/workflows/cypress-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Cypress tests
name: Cypress Tests using Cypress Docker Image

on:
workflow_call:
Expand Down Expand Up @@ -27,43 +27,49 @@ on:
concurrency:
group: ${{ github.workflow }}

env:
NODE_VERSION: 18.x

jobs:
cypress-tests:
if: inputs.environment == 'test' || inputs.environment == 'development'
environment: ${{ inputs.environment }}
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.Academies.External.Web/CypressTests
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup node.js
uses: actions/setup-node@v4
- uses: actions/checkout@v4
with:
node-version: ${{ env.NODE_VERSION }}
ref: ${{ github.ref }}

- name: Npm install
run: npm install

- name: Run cypress
run: npm run cy:run -- --env URL='${{ secrets.URL }}',LOGIN_USERNAME=${{ secrets.LOGIN_USERNAME }},LOGIN_PASSWORD=${{ secrets.LOGIN_PASSWORD }},SIGNIN_URL=${{ secrets.SIGNIN_URL }}
- name: Run
uses: cypress-io/github-action@v6
env:
CYPRESS_URL: ${{ secrets.URL }}
CYPRESS_LOGIN_USERNAME: ${{ secrets.LOGIN_USERNAME }}
CYPRESS_LOGIN_PASSWORD: ${{ secrets.LOGIN_PASSWORD }}
CYPRESS_SIGNIN_URL: ${{ secrets.SIGNIN_URL }}
with:
browser: ${{ matrix.browser }}
working-directory: ./Dfe.Academies.External.Web/CypressTests
wait-on: ${{ secrets.URL }}

- name: Generate report
if: always()
run: |
mkdir mochareports
npm run generate:html:report
- name: upload report
- name: Upload report
uses: actions/upload-artifact@v4
if: failure()
with:
name: screenshots
name: screenshots-${{ inputs.environment }}-${{ matrix.browser }}
path: Dfe.Academies.External.Web/CypressTests/cypress/screenshots

- name: Report results
Expand Down

0 comments on commit 8880b80

Please sign in to comment.