diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index 47e7e9d50..ab7f02070 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -14,6 +14,13 @@ on: branches: - master +services: + nginx: + image: nginx + # Map port 8080 on the Docker host to port 80 on the nginx container + ports: + - 8080:80 + jobs: build: if: "!contains(github.event.head_commit.message, 'skip ci')"