clrghouz/.gitlab-test.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

2021-06-15 12:19:14 +00:00
test:
image: ${CI_REGISTRY}/leenooks/php:8.1-fpm-alpine-pgsql-server-test
2021-06-15 12:19:14 +00:00
stage: test
# NOTE: This service is dependant on project file configuration, which is not there if the cache was deleted
# resulting in the testing to fail on the first run.
services:
- name: postgres:15-alpine
alias: postgres-test
2021-06-15 12:19:14 +00:00
variables:
POSTGRES_USER: test
POSTGRES_PASSWORD: test
2021-06-15 12:19:14 +00:00
tags:
- php
2021-06-15 12:19:14 +00:00
only:
- master
2021-06-15 12:19:14 +00:00
before_script:
- mv .env.testing .env
2021-06-15 12:19:14 +00:00
# Install Composer and project dependencies.
- mkdir -p ${COMPOSER_HOME}
- if [ -n "$GITHUB_TOKEN" ]; then cat $GITHUB_TOKEN |base64 -d > ${COMPOSER_HOME}/auth.json; fi
- composer install
2021-06-15 12:19:14 +00:00
# Generate an application key. Re-cache.
- php artisan key:generate
- php artisan migrate
- php artisan db:seed
2021-06-15 12:19:14 +00:00
script:
# run laravel tests
- XDEBUG_MODE=coverage php vendor/bin/phpunit --coverage-text --colors=never
# run frontend tests
# if you have any task for testing frontend
# set it in your package.json script
# comment this out if you don't have a frontend test
# npm test