Skip to content
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
8 changes: 4 additions & 4 deletions .github/workflows/end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,18 +99,18 @@ jobs:
npx nx build web-component
npx nx run-many --targets=serve,serve-fr,serve-es --projects=web-component,studio-web --parallel 6 &

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium

- name: Wait for the servers to be up
run: |
# wait for the studio web to be up
sleep 50
curl --retry 20 --retry-delay 10 --retry-all-errors http://localhost:4200 > /dev/null
# Make sure the back-end API is up too
curl --retry 20 --retry-delay 1 --retry-all-errors http://localhost:8000/api/v1/langs

- name: Run Playwright tests for studio-web
run: |
npx playwright install --with-deps chromium
npx nx e2e studio-web
run: npx nx e2e studio-web

- name: Upload HTML report
uses: actions/upload-artifact@v6
Expand Down
24 changes: 12 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@nx/eslint-plugin": "^22.1.2",
"@nx/jest": "^22.1.2",
"@nxext/stencil": "^21.0.0",
"@playwright/test": "^1.56.1",
"@playwright/test": "^1.60.0",
"@stencil/angular-output-target": "^0.10.2",
"@stencil/core": "^4.35.3",
"@stencil/sass": "^3.2.1",
Expand Down
Loading