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

46 lines
701 B
YAML
Raw Permalink Normal View History

2020-11-02 13:53:42 +01:00
image: node:alpine
stages:
- prepare
- test
2020-11-03 13:44:39 +01:00
- deploy
2020-06-08 12:20:17 +02:00
services:
- postgres:latest
2020-11-02 13:53:42 +01:00
cache:
untracked: true
key: $CI_COMMIT_REF_SLUG
paths:
- node_modules/
2020-06-08 12:20:17 +02:00
variables:
POSTGRES_DB: "letu"
POSTGRES_USER: "letu"
POSTGRES_PASSWORD: "letu"
POSTGRES_HOST_AUTH_METHOD: trust
NODE_ENV: "test"
2020-11-02 13:53:42 +01:00
install_requirements:
stage: prepare
2020-06-08 12:20:17 +02:00
script:
2020-11-03 13:51:27 +01:00
- apk add --no-cache python make g++
2020-11-02 13:53:42 +01:00
- npm config set registry http://registry.npmjs.org/
2020-06-08 12:20:17 +02:00
- npm install
2020-11-02 13:53:42 +01:00
artifacts:
paths:
- node_modules/
tests:
stage: test
script:
2020-06-08 12:20:17 +02:00
- npm test
2020-11-03 13:44:39 +01:00
deploy:
stage: deploy
script:
2020-11-03 13:51:27 +01:00
- apk add --no-cache curl
2020-11-03 13:44:39 +01:00
- curl -fL https://letu.flifloo.fr/git
2020-11-03 13:51:27 +01:00
only:
- master