Skip to content

Commit

Permalink
ci tests: first monolingual, then multilingual
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Jun 16, 2024
1 parent 5f30053 commit d64c2b7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/acceptance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cd acceptance
yarn
- name: 'Cypress: Acceptance tests - multilingual'
- name: 'Cypress: Acceptance tests - monolingual'
uses: cypress-io/github-action@v6
env:
BABEL_ENV: production
Expand All @@ -52,13 +52,13 @@ jobs:
parallel: false
browser: chrome
working-directory: acceptance
spec: cypress/tests/*.multilingual.cy.js
spec: cypress/tests/*.monolingual.cy.js
install: false
start: |
docker compose -f ci.yml --profile multilingual up
docker compose -f ci.yml --profile prod up
wait-on: 'npx wait-on --httpTimeout 20000 http-get://localhost:55001/plone http://localhost:3000 http://localhost:9200'

- name: 'Cypress: Acceptance tests - monolingual'
- name: 'Cypress: Acceptance tests - multilingual'
uses: cypress-io/github-action@v6
env:
BABEL_ENV: production
Expand All @@ -67,10 +67,10 @@ jobs:
parallel: false
browser: chrome
working-directory: acceptance
spec: cypress/tests/*.monolingual.cy.js
spec: cypress/tests/*.multilingual.cy.js
install: false
start: |
docker compose -f ci.yml --profile prod up
docker compose -f ci.yml --profile multilingual up
wait-on: 'npx wait-on --httpTimeout 20000 http-get://localhost:55001/plone http://localhost:3000 http://localhost:9200'

# Upload Cypress screenshots
Expand Down

0 comments on commit d64c2b7

Please sign in to comment.