1
0
Fork 0
mirror of https://github.com/Findus23/devicedetector.net.git synced 2024-09-19 15:43:46 +02:00
devicedetector.net/.gitlab-ci.yml

39 lines
607 B
YAML
Raw Normal View History

2021-01-25 22:22:22 +01:00
php:
2021-01-25 22:29:17 +01:00
tags:
- docker
2021-01-25 22:22:22 +01:00
image: chialab/php:7.4
2019-04-12 19:47:12 +02:00
2021-01-25 22:22:22 +01:00
# Select what we should cache between builds
cache:
paths:
- vendor/
services:
- redis:latest
2019-04-12 19:47:12 +02:00
2021-01-25 22:22:22 +01:00
before_script:
- composer install
- php -S localhost:9000 -t public >/dev/null 2>/dev/null &
2019-04-12 19:47:12 +02:00
script:
- php update.php
- php test.php
2021-01-25 22:22:22 +01:00
frontend:
tags:
- shell
cache:
paths:
- client/node_modules/
before_script:
- cd client
- yarn install --pure-lockfile --ignore-engines
script:
- yarn run build
artifacts:
name: "website"
paths:
- client/dist/
expire_in: 1 week