|
|
@@ -1,4 +1,5 @@
|
|
|
# @see https://docs.cypress.io/guides/continuous-integration/gitlab-ci
|
|
|
+# Consult the results on the Cypress dashboard: https://dashboard.cypress.io/
|
|
|
|
|
|
stages:
|
|
|
- build
|
|
|
@@ -33,13 +34,7 @@ chrome:
|
|
|
parallel: 5
|
|
|
script:
|
|
|
- yarn dev & npx wait-on http://localhost:3004
|
|
|
- - yarn cypress:silent --parallel --browser chrome --group "Chrome" --spec "test/cypress/integration/*"
|
|
|
- artifacts:
|
|
|
- when: always
|
|
|
- paths:
|
|
|
- - cypress/videos/**/*.mp4
|
|
|
- - cypress/screenshots/**/*.png
|
|
|
- expire_in: 1 day
|
|
|
+ - yarn cypress:silent --record --parallel --browser chrome --group "Chrome" --spec "test/cypress/integration/*"
|
|
|
|
|
|
chrome-mobile:
|
|
|
image: cypress/browsers:node14.17.0-chrome88-ff89
|
|
|
@@ -47,13 +42,7 @@ chrome-mobile:
|
|
|
parallel: 5
|
|
|
script:
|
|
|
- yarn dev & npx wait-on http://localhost:3004
|
|
|
- - yarn cypress:silent --parallel --browser chrome --group "Chrome - Mobile" --spec "test/cypress/integration/*" --config "viewportWidth=375,viewportHeight=667"
|
|
|
- artifacts:
|
|
|
- when: always
|
|
|
- paths:
|
|
|
- - cypress/videos/**/*.mp4
|
|
|
- - cypress/screenshots/**/*.png
|
|
|
- expire_in: 1 day
|
|
|
+ - yarn cypress:silent --record --parallel --browser chrome --group "Chrome - Mobile" --spec "test/cypress/integration/*" --config "viewportWidth=375,viewportHeight=667"
|
|
|
|
|
|
firefox:
|
|
|
image: cypress/browsers:node14.17.0-chrome88-ff89
|
|
|
@@ -61,13 +50,7 @@ firefox:
|
|
|
parallel: 5
|
|
|
script:
|
|
|
- yarn dev & npx wait-on http://localhost:3004
|
|
|
- - yarn cypress:silent --parallel --browser firefox --group "Firefox" --spec "test/cypress/integration/*"
|
|
|
- artifacts:
|
|
|
- when: always
|
|
|
- paths:
|
|
|
- - cypress/videos/**/*.mp4
|
|
|
- - cypress/screenshots/**/*.png
|
|
|
- expire_in: 1 day
|
|
|
+ - yarn cypress:silent --record --parallel --browser firefox --group "Firefox" --spec "test/cypress/integration/*"
|
|
|
|
|
|
firefox-mobile:
|
|
|
image: cypress/browsers:node14.17.0-chrome88-ff89
|
|
|
@@ -75,10 +58,4 @@ firefox-mobile:
|
|
|
parallel: 5
|
|
|
script:
|
|
|
- yarn dev & npx wait-on http://localhost:3004
|
|
|
- - yarn cypress:silent --parallel --browser firefox --group "Firefox - Mobile" --spec "test/cypress/integration/*" --config "viewportWidth=375,viewportHeight=667"
|
|
|
- artifacts:
|
|
|
- when: always
|
|
|
- paths:
|
|
|
- - cypress/videos/**/*.mp4
|
|
|
- - cypress/screenshots/**/*.png
|
|
|
- expire_in: 1 day
|
|
|
+ - yarn cypress:silent --record --parallel --browser firefox --group "Firefox - Mobile" --spec "test/cypress/integration/*" --config "viewportWidth=375,viewportHeight=667"
|