Debug CI
This commit is contained in:
parent
0e8101c9e4
commit
2b043f952b
1 changed files with 11 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue