From 2b043f952b02272da946e12b0fa7ce7e44d5ca1c Mon Sep 17 00:00:00 2001 From: dbroqua Date: Tue, 11 Feb 2020 19:52:53 +0100 Subject: [PATCH] Debug CI --- .gitlab-ci.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e24db1a..bb98688 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,7 @@ variables: stages: - build + - migrate - test cache: @@ -25,9 +26,17 @@ install_dependencies: paths: - node_modules/ -testing_testing: - stage: test +migrate: + stage: migrate script: - ./node_modules/.bin/sequelize db:migrate + +seed: + stage: seed + script: - ./node_modules/.bin/sequelize db:seed:all + +testing: + stage: test + script: - yarn test --ci --collectCoverage=true