Skip to content

Commit a9d07bb

Browse files
committed
Verify at the right place.
1 parent ad97b04 commit a9d07bb

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/test-docker-v29.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,16 @@ jobs:
2424
curl -fsSL https://get.docker.com -o get-docker.sh
2525
sudo VERSION=29.0.0 sh get-docker.sh
2626
sudo systemctl restart docker
27-
27+
28+
- name: Verify Docker version, Install and Test
29+
run: |
2830
# Verify
2931
docker version
3032
DOCKER_VERSION=$(docker version --format '{{.Server.Version}}')
3133
if [[ ! "$DOCKER_VERSION" =~ ^29\. ]]; then
3234
echo "ERROR: Expected Docker v29.x but got $DOCKER_VERSION"
3335
exit 1
34-
fi
35-
36-
- name: Install and Test
37-
run: |
36+
fi
3837
yarn install --frozen-lockfile
3938
yarn type-check
4039
yarn package

0 commit comments

Comments
 (0)