We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efed39d commit 09fc699Copy full SHA for 09fc699
.github/workflows/playwright.yml
@@ -31,7 +31,7 @@ jobs:
31
uses: actions/setup-node@v4
32
with:
33
node-version: 20
34
- cache: 'npm'
+ cache: "npm"
35
36
- name: Install front-end dependencies
37
run: npm ci
@@ -48,8 +48,11 @@ jobs:
48
49
- name: Start front-end server
50
run: |
51
- npm run start:stage &
52
- npx wait-on https://localhost:1337
+ npm run start:federated &
+ npx wait-on http://localhost:8003/apps/image-builder/
53
+
54
+ - name: Run testing proxy
55
+ run: docker run -d --network=host -e HTTPS_PROXY=$RH_PROXY_URL -v "$(pwd)/config:/config:ro,Z" --name consoledot-testing-proxy quay.io/dvagner/consoledot-testing-proxy
56
57
- name: Run front-end Playwright tests
58
env:
config/routes.json
@@ -0,0 +1,3 @@
1
+{
2
+ "/apps/image-builder*": { "url": "http://127.0.0.1:8003" }
3
+}
0 commit comments