Skip to content

Commit d52a6c9

Browse files
committed
fix hanging the tests
1 parent a26faa2 commit d52a6c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/pull-integration-cluster-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
k3d kubeconfig get k3dCluster > tests/integration/fixtures/kubeconfig.yaml
5252
export CYPRESS_DOMAIN=http://localhost:3001
53-
npm run start
53+
npm run start &
5454
5555
echo "waiting for server to be up..."
5656
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "$CYPRESS_DOMAIN")" != "200" ]]; do sleep 5; done

.github/workflows/pull-integration-namespace-k3d.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
k3d kubeconfig get k3dCluster > tests/integration/fixtures/kubeconfig.yaml
5252
export CYPRESS_DOMAIN=http://localhost:3001
53-
npm run start
53+
npm run start &
5454
5555
echo "waiting for server to be up..."
5656
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "$CYPRESS_DOMAIN")" != "200" ]]; do sleep 5; done

.github/workflows/pull-lighthouse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
k3d kubeconfig get k3dCluster > tests/lighthouse/fixtures/kubeconfig.yaml
4646
export DOMAIN=http://localhost:3001
47-
npm run start
47+
npm run start &
4848
4949
echo "waiting for server to be up..."
5050
while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' "$DOMAIN")" != "200" ]]; do sleep 5; done

0 commit comments

Comments
 (0)