Skip to content

Commit 2099b18

Browse files
Hector AzpuruaHector Azpurua
authored andcommitted
fix typo
1 parent ed7cf1a commit 2099b18

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/build-amd64.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: sleep 120
3030

3131
- name: Test noVNC is up
32-
run: |
32+
run: |
3333
SERVICE_URL="http://localhost:3080"
3434
EXPECTED_RESPONSE="200"
3535
RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" $SERVICE_URL)
@@ -46,7 +46,7 @@ jobs:
4646
fi
4747
4848
- name: Test code-server is up
49-
run: |
49+
run: |
5050
SERVICE_URL="http://localhost:3081"
5151
EXPECTED_RESPONSE="200"
5252
RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" $SERVICE_URL)
@@ -61,8 +61,9 @@ jobs:
6161
echo "Actual: $RESPONSE"
6262
exit 1
6363
fi
64-
- name: Test sshd is up
65-
run: |
64+
65+
- name: Test sshd is up
66+
run: |
6667
EXPECTED_RESPONSE="1"
6768
RESPONSE=$(netstat -an | grep 0.0.0.0:3022 | grep tcp | grep LISTEN | wc -l)
6869
if [ "$RESPONSE" == "$EXPECTED_RESPONSE" ]; then

.github/workflows/build-arm64.yaml

Whitespace-only changes.

0 commit comments

Comments
 (0)