chore(deps): bump axios from 1.4.0 to 1.6.1 #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
name: Docker Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Lint Dockerfile | |
uses: hadolint/[email protected] | |
build: | |
name: Docker build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Pull images | |
run: docker compose pull | |
- name: Build services | |
run: docker compose build --no-cache | |
- name: Start services | |
run: docker compose up -d | |
- name: Wait for services | |
run: | | |
while status="$(docker inspect --format="{{if .Config.Healthcheck}}{{print .State.Health.Status}}{{end}}" "$(docker compose ps -q php)")"; do | |
case $status in | |
starting) sleep 1;; | |
healthy) exit 0;; | |
unhealthy) exit 1;; | |
esac | |
done | |
exit 1 | |
- name: Check HTTP reachability | |
run: curl http://symfo.localhost | |
- name: Check HTTPS reachability | |
run: curl -k https://symfo.localhost |