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

updated the ripple regression test #1322

Merged
merged 5 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 74 additions & 30 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,68 +7,112 @@ 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
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: 'ubuntu-latest'
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: 'ubuntu-latest'
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: 'ubuntu-latest'
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: 'ubuntu-latest'
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: 'ubuntu-latest'
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: 'ubuntu-latest'
set_status:
needs: [e2e_be, e2e_fe_smoke, e2e_fe_chrome, e2e_fe_android]
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 }}
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