generated from ConductionNL/api-connector
-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (46 loc) · 1.53 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: CI
on:
push:
branches:
- main
pull_request: ~
workflow_dispatch: ~
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Pull images
run: docker-compose pull --ignore-pull-failures || true
- name: Start services
run: docker-compose up --build -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)
docker-compose ps
docker-compose logs
exit 1
;;
esac
done
exit 1
- name: Check HTTP reachability
run: curl -v -o /dev/null http://localhost
- name: Check HTTPS reachability
run: curl -vk -o /dev/null https://localhost
- name: Create test database
run: |
docker-compose exec -T php bin/console -e test doctrine:database:create
docker-compose exec -T php bin/console -e test doctrine:migrations:migrate --no-interaction
- name: PHPUnit
run: docker-compose exec -T php bin/phpunit
- name: Doctrine Schema Validator
run: docker-compose exec -T php bin/console doctrine:schema:validate --skip-sync
- name: Jest
run: docker-compose exec -T pwa yarn test --ci --passWithNoTests