1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
letu/.gitlab-ci.yml
2020-11-03 13:56:34 +01:00

46 lines
701 B
YAML

image: node:alpine
stages:
- prepare
- test
- deploy
services:
- postgres:latest
cache:
untracked: true
key: $CI_COMMIT_REF_SLUG
paths:
- node_modules/
variables:
POSTGRES_DB: "letu"
POSTGRES_USER: "letu"
POSTGRES_PASSWORD: "letu"
POSTGRES_HOST_AUTH_METHOD: trust
NODE_ENV: "test"
install_requirements:
stage: prepare
script:
- apk add --no-cache python make g++
- npm config set registry http://registry.npmjs.org/
- npm install
artifacts:
paths:
- node_modules/
tests:
stage: test
script:
- npm test
deploy:
stage: deploy
script:
- apk add --no-cache curl
- curl -fL https://letu.flifloo.fr/git
only:
- master