Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion warden/setup-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,23 @@ runs:

echo ".env created"
cat .env

- name: Expose nginx for CI
working-directory: ${{ inputs.base_directory }}
shell: bash
run: |
mkdir -p .warden

cat <<EOF > .warden/warden-env.yml
version: "3.5"
services:
nginx:
ports:
- "8080:80"
EOF

echo "Warden override created"
cat .warden/warden-env.yml

- name: Warden svc up && Warden env up
working-directory: ${{ inputs.base_directory }}
Expand Down Expand Up @@ -238,7 +255,7 @@ runs:
done
echo "HEALTHY: ${HEALTHY}"
exit ${HEALTHY}

- name: composer install run
working-directory: ${{ inputs.base_directory }}
shell: bash
Expand Down
Loading