Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added set_status job to update the PR with e2e status #1321

Merged
merged 9 commits into from
Nov 13, 2023
117 changes: 89 additions & 28 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,59 +7,120 @@ on:
required: true
be_url:
type: string
required: true
fe_url:
type: string
required: true

jobs:
e2e_be:
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_be.yml@main
set_status_initial:
uses: dpc-sdp/github-actions/.github/workflows/set_status.yml@main
secrets: inherit
with:
context: 'e2e'
description: 'Waiting for tests to pass'
state: 'pending'
target_url: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
fe_smoke:
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@main
secrets: inherit
with:
tags: "(@core or @${{ inputs.project }}) and @regression"
name: 'FE smoke'
test_type: ":smoke-test:"
tags: "@core and @smoke"
fe_url: ${{ inputs.fe_url }}
be_url: ${{ inputs.be_url }}
project: ${{ inputs.project }}
browser: 'chrome'
test_id: 'fixture'
test_type: ':e2e:'
test_id: "fixture"
parallel: 10
tag: 'sdp-dev-r1-chrome'
runner: 'biggy-ripple'
e2e_fe_smoke:
fe_core:
needs: fe_smoke
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@main
secrets: inherit
with:
tags: "(@smoke and @core) or (@smoke and @${{ inputs.project }})"
be_url: ${{ inputs.be_url }}
name: 'FE core'
test_type: ':e2e:'
tags: "@core and @regression and not @mobile"
fe_url: ${{ inputs.fe_url }}
be_url: ${{ inputs.be_url }}
project: ${{ inputs.project }}
browser: 'chrome'
test_id: 'fixture'
test_type: ':e2e:'
test_id: "fixture"
parallel: 10
tag: 'sdp-dev-r1-chrome'
runner: 'biggy-ripple'
e2e_fe_chrome:
needs:
- e2e_be
- e2e_fe_smoke
fe_core_safari:
needs: fe_smoke
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@main
secrets: inherit
with:
tags: "(@core or @${{ inputs.project }}) and @regression and not @mobile"
be_url: ${{ inputs.be_url }}
name: 'FE Core Safari'
test_type: ':e2e:'
tags: '@core and @regression and not @mobile'
fe_url: ${{ inputs.fe_url }}
be_url: ${{ inputs.be_url }}
project: ${{ inputs.project }}
browser: 'chrome'
test_id: 'fixture'
test_id: "fixture"
parallel: 1
tag: 'sdp-dev-r1-chrome'
browser: 'browserstack.safari'
runner: 'biggy-ripple'
fe_core_android_chrome:
needs: fe_smoke
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@main
secrets: inherit
with:
name: 'FE Core Android Chrome'
test_type: ':e2e:'
tags: '@core and @regression and not @desktop'
fe_url: ${{ inputs.fe_url }}
be_url: ${{ inputs.be_url }}
project: ${{ inputs.project }}
test_id: "fixture"
parallel: 1
tag: 'sdp-dev-r1-chrome'
browser: 'browserstack.androidChrome'
runner: 'biggy-ripple'
e2e_fe_android:
needs:
- e2e_be
- e2e_fe_smoke
fe_core_iphone_safari:
needs: fe_smoke
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@main
secrets: inherit
with:
tags: "(@core or @${{ inputs.project }}) and @regression and not @desktop"
name: 'FE Core iPhone Safari'
test_type: ':e2e:'
tags: '@core and @regression and not @desktop'
fe_url: ${{ inputs.fe_url }}
be_url: ${{ inputs.be_url }}
project: ${{ inputs.project }}
test_id: "fixture"
parallel: 1
tag: 'sdp-dev-r1-chrome'
browser: 'browserstack.iphoneSafari'
runner: 'biggy-ripple'
fe_core_visual:
needs: fe_smoke
uses: dpc-sdp/github-actions/.github/workflows/run_e2e_fe.yml@main
secrets: inherit
with:
name: 'FE core visual'
app: frontend-visual
test_type: ":applitools:"
eyes_appname: 'sdp-core-v1'
tags: "@core and @visual-regression-minimal"
fe_url: ${{ inputs.fe_url }}
be_url: ${{ inputs.be_url }}
project: ${{ inputs.project }}
browser: 'androidChrome'
test_id: 'fixture'
test_type: ':e2e:'
test_id: "fixture"
parallel: 1
tag: 'sdp-dev-r1-chrome'
runner: 'biggy-ripple'
set_status:
needs: [fe_smoke, fe_core, fe_core_safari, fe_core_iphone_safari, fe_core_android_chrome, fe_core_visual]
if: ${{ always() }}
uses: dpc-sdp/github-actions/.github/workflows/set_status.yml@main
secrets: inherit
with:
context: 'e2e'
description: 'Ripple E2E testing'
target_url: ${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }}
2 changes: 1 addition & 1 deletion examples/reference/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export default {
*/
ripple: {
viclogo: true,
viclogoFooter: false
viclogoFooter: true
},
/*
* Configuration for ripple-nuxt-tide
Expand Down
Loading